4 height: calc(
100% -
10px);
5 -webkit-transition: height
50ms;
12 This test checks class changes affecting sibling selectors happening during transitions over calculated lengths.
13 The test passes if it does not crash.
17 if (window
.testRunner
) {
18 testRunner
.dumpAsText();
19 testRunner
.waitUntilDone();
22 div
= document
.createElement('div');
23 div
.setAttribute('class', 'sibling');
24 document
.body
.appendChild(div
);
26 th
= document
.createElement('th'); // td, tr also cause test to fail
27 th
.setAttribute('class', 'transition');
28 document
.body
.appendChild(th
);
31 div
.setAttribute('class', 'stix');
32 if (window
.testRunner
)
33 testRunner
.notifyDone();