summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-animations/background-color.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-animations/background-color.html')
-rw-r--r--layout/reftests/css-animations/background-color.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/css-animations/background-color.html b/layout/reftests/css-animations/background-color.html
new file mode 100644
index 0000000000..6a990524a2
--- /dev/null
+++ b/layout/reftests/css-animations/background-color.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML>
+<html class="reftest-wait reftest-no-flush">
+<style>
+@keyframes anim {
+ from { background-color: green; }
+ to { background-color: red; }
+}
+#target {
+ width: 100px;
+ height: 100px;
+ background-color: black;
+}
+</style>
+<div id="target"></div>
+<script>
+document.addEventListener("MozReftestInvalidate", () => {
+ target.style.animation = "anim 100s step-end reverse";
+ target.addEventListener("animationstart", () => {
+ document.documentElement.classList.remove("reftest-wait");
+ });
+});
+</script>
+</html>