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