1 <!-- Based on fast/repaint/change-transform.html -->
4 <script src=
"resources/paint-invalidation-test.js"></script>
5 <script type=
"text/javascript" charset=
"utf-8">
6 window.expectedPaintInvalidationObjects = [
7 "LayoutBlockFlow DIV id='square'",
9 function paintInvalidationTest()
11 var target = document.getElementById(
"square");
12 target.style.webkitTransform =
"scale(0.5, 0.5)";
15 <style type=
"text/css" media=
"screen">
34 <body onload=
"runPaintInvalidationTest()">
35 <div id=
"square"></div>
36 <div id=
"overlay"></div>
38 <p><a href=
"https://bugs.webkit.org/show_bug.cgi?id=19623">https://bugs.webkit.org/show_bug.cgi?id=
19623</a></p>
39 <p>Test for incomplete repaint when a non-layer object gains a transform. You should see a green square above. If you see any red, the test has failed.
</p>