Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/float-in-new-block-with-layout-delta.html

Issue 1366763002: Text expectations of paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!-- Based on fast/repaint/float-in-new-block-with-layout-delta.html --> 1 <!-- Based on fast/repaint/float-in-new-block-with-layout-delta.html -->
2 <script src="resources/paint-invalidation-test.js" type="text/javascript" charse t="utf-8"></script> 2 <script src="resources/paint-invalidation-test.js" type="text/javascript" charse t="utf-8"></script>
3 <script> 3 <script>
4 window.expectedPaintInvalidationObjects = [
5 "LayoutBlockFlow DIV id='target'",
6 "LayoutBlockFlow (floating) DIV",
7 ];
8 function paintInvalidationTest() 4 function paintInvalidationTest()
9 { 5 {
10 document.getElementById("target").style.removeProperty("display"); 6 document.getElementById("target").style.removeProperty("display");
11 } 7 }
12 </script> 8 </script>
13 <body onload="runPaintInvalidationTest()"> 9 <body onload="runPaintInvalidationTest()">
14 <div style="height: 100px;"></div> 10 <div style="height: 100px;"></div>
15 <div id="target" style="display: none"> 11 <div id="target" style="display: none">
16 <div style="float: left; width: 100px; height: 100px; background-color: green;"></div> 12 <div style="float: left; width: 100px; height: 100px; background-color: green;"></div>
17 </div> 13 </div>
18 </body> 14 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698