10 /* Must be a stacking context */
19 transition: opacity
.1s;
20 background-color: lightblue;
30 transition: opacity
0.1s;
31 transition-delay:
0.2s;
32 background-color: lightgreen;
42 <div class=
"container">
44 <div class=
"inner"></div>
47 <div class=
"sibling"></div>
49 if (window
.testRunner
) {
50 testRunner
.dumpAsText();
51 testRunner
.waitUntilDone();
53 getComputedStyle(document
.body
).color
;
54 document
.body
.classList
.add("loaded")
55 document
.querySelector(".sibling").addEventListener("transitionend", function() {
56 if (window
.testRunner
)
57 testRunner
.notifyDone();
60 This test passes if it doesn't crash.