4 transform: translateX(
0);
10 <div id=
"relayout-boundary">
11 <div id=
"layout-target">
12 This test queries layout overflow for propagation on a relayout boundary that has dirty layout.
13 It should not trigger assertions that assume clean layout.
17 if (window
.testRunner
)
18 testRunner
.dumpAsText();
20 document
.scrollingElement
.scrollWidth
;
22 var layoutTarget
= document
.getElementById("layout-target");
23 layoutTarget
.style
.width
= "99px";
25 var relayoutBoundary
= document
.getElementById("relayout-boundary");
26 relayoutBoundary
.style
.transform
= "translateX(1px)";
28 document
.scrollingElement
.scrollWidth
;