Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / box-shadow-inset-repaint.html
blobf11c9389072a0230143ff3cd35934c7d92d5cac8
1 <!-- Based on fast/repaint/box-shadow-inset-repaint.html -->
2 <!DOCTYPE html>
3 <html>
4 <head>
5 <style type="text/css" media="screen">
6 div#container {
7 padding: 15px;
8 box-shadow: inset cyan 0 -60px 0 0;
10 </style>
11 <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
12 <script type="text/javascript">
13 window.expectedPaintInvalidationObjects = [
14 "LayoutBlockFlow DIV id='container'",
15 "LayoutBlockFlow DIV",
17 function paintInvalidationTest()
19 document.getElementById('container').innerHTML = "<div style='width:100px; height:100px; background-color:green'></div>";
21 </script>
22 </head>
23 <body onload="runPaintInvalidationTest()">
24 <div id="container" style="width:200px;"></div>
25 </body>
26 </html>