summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-transitions/reframe-and-transition-starts-at-the-same-time.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-transitions/reframe-and-transition-starts-at-the-same-time.html')
-rw-r--r--layout/reftests/css-transitions/reframe-and-transition-starts-at-the-same-time.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/css-transitions/reframe-and-transition-starts-at-the-same-time.html b/layout/reftests/css-transitions/reframe-and-transition-starts-at-the-same-time.html
new file mode 100644
index 0000000000..e3eee44886
--- /dev/null
+++ b/layout/reftests/css-transitions/reframe-and-transition-starts-at-the-same-time.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<style>
+#target::before {
+ transition: background-color 100s steps(1, end);
+ content: 'initial';
+ background-color: rgb(255, 255, 255);
+ height: 100px;
+ width: 100px;
+ position: absolute;
+}
+#target.hover::before{
+ background-color: rgb(0, 0, 0);
+ content: '';
+}
+</style>
+<div id="target"></div>
+<script>
+window.addEventListener("load", () => {
+ target.className = 'hover';
+ target.addEventListener('transitionstart', () => {
+ document.documentElement.classList.remove('reftest-wait');
+ });
+});
+</script>
+</html>