Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / transform-disable-layoutstate.html
blobe5428e2d96ccb310f4c58e964f66ae0ec7b9aec8
1 <!-- Based on fast/repaint/transform-disable-layoutstate.html -->
2 <!DOCTYPE html>
3 <html>
4 <head>
5 <script src="resources/paint-invalidation-test.js" type="text/javascript" charset="utf-8"></script>
6 <script type="text/javascript" charset="utf-8">
7 window.expectedPaintInvalidationObjects = [
8 "LayoutBlockFlow DIV",
9 "LayoutBlockFlow DIV",
10 "LayoutBlockFlow DIV id='target'",
12 function paintInvalidationTest()
14 document.getElementById('target').style.height='10px';
16 </script>
17 </head>
18 <body onload="runPaintInvalidationTest()">
19 <div id="container" style="width: 500px; transform: translate(50px, 80px)">
20 <div style="padding-bottom: 100px; background: silver;">
21 <div style="float: right; height: 50px; width: 50px; background: green;"></div>
22 <div style="clear: right; border: 4px solid blue;">
23 <div style="height: 55px;" id="target">
24 </div>
25 </div>
26 </div>
27 </div>
28 </body>
29 </html>