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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/float-new-in-block.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-new-in-block.html --> 1 <!-- Based on fast/repaint/float-new-in-block.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",
6 "LayoutBlockFlow (floating) DIV id='target'",
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: 20px; background-color: lightblue;"> 10 <div style="height: 20px; background-color: lightblue;">
15 <div id="target" style="display: none; float: left; width: 100px; height : 100px; background-color: green;"></div> 11 <div id="target" style="display: none; float: left; width: 100px; height : 100px; background-color: green;"></div>
16 </div> 12 </div>
17 </body> 13 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698