11 #descendant-needing-layout {
15 background-color: green;
18 This test verifies adding transform to a block correctly update container status.
19 <div id=
"old-container">
20 <div id=
"new-container">
21 <div id=
"positioned-child">
22 <div id=
"descendant-needing-layout">
29 document
.body
.offsetTop
;
31 var newContainer
= document
.getElementById("new-container");
32 var descendantNeedingLayout
= document
.getElementById("descendant-needing-layout");
34 newContainer
.style
.transform
= "translateX(0)";
35 descendantNeedingLayout
.style
.display
= "block";