| Index: LayoutTests/paint/invalidation/spv2/content-into-overflow.html
|
| diff --git a/LayoutTests/fast/repaint/content-into-overflow.html b/LayoutTests/paint/invalidation/spv2/content-into-overflow.html
|
| similarity index 77%
|
| copy from LayoutTests/fast/repaint/content-into-overflow.html
|
| copy to LayoutTests/paint/invalidation/spv2/content-into-overflow.html
|
| index 8f605a7a41a2ff3345b91c2507cf15249e42f931..68a34a8d6d23c1977b92c54b4a2b8e4b53c5d597 100644
|
| --- a/LayoutTests/fast/repaint/content-into-overflow.html
|
| +++ b/LayoutTests/paint/invalidation/spv2/content-into-overflow.html
|
| @@ -1,3 +1,4 @@
|
| +<!-- Based on fast/repaint/content-into-overflow.html -->
|
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
| <head>
|
| @@ -10,9 +11,15 @@
|
| #main-content { float: left; width: 100px; height: 80px; }
|
| #target3 { display: none; clear: both; height: 20px; background: green; }
|
| </style>
|
| - <script src="resources/text-based-repaint.js" type="text/javascript"></script>
|
| + <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
|
| <script>
|
| - function repaintTest()
|
| + window.expectedPaintInvalidationObjects = [
|
| + "LayoutBlockFlow (positioned) DIV",
|
| + "LayoutBlockFlow (positioned) DIV",
|
| + "LayoutBlockFlow DIV",
|
| + "LayoutBlockFlow DIV id='target3'",
|
| + ];
|
| + function paintInvalidationTest()
|
| {
|
| document.getElementById('target1').style.width = 'auto';
|
| document.getElementById('target2').style.height = 'auto';
|
| @@ -20,7 +27,7 @@
|
| }
|
| </script>
|
| </head>
|
| -<body onload="runRepaintTest();">
|
| +<body onload="runPaintInvalidationTest();">
|
| <div style="position: absolute; border: medium solid green; top: 8px; height: 100px;">
|
| <div class="narrow" id="target1">
|
| <div class="wide"></div>
|
|
|