3 <style type=
"text/css" media=
"screen">
9 -webkit-transform-origin: top left;
16 background-color: red;
19 <script src=
"resources/text-based-repaint.js"></script>
21 function repaintTest()
23 document
.getElementById("target").style
.width
= "100px";
27 <body onload=
"runRepaintTest()">
29 <p>Tests repaint after layout of a subtree, inside a transformed element. You should see a large green square below.
</p>
30 <div class=
"transformed">
31 <div class=
"layoutroot">
32 <div id=
"target" style=
"height: 100px; width: 50px; background-color: green;"></div>