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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/cached-change-row-border-color.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/table/border-collapsing/cached-change-row-border-color.html - -> 1 <!-- Based on fast/table/border-collapsing/cached-change-row-border-color.html - ->
2 <!-- 2 <!--
3 Calculating collapsed borders for big tables is expensive, so we cache them and recalculate when needed. 3 Calculating collapsed borders for big tables is expensive, so we cache them and recalculate when needed.
4 Here we change row border color, expect that cache is invalidated and paint prod uces expected image. 4 Here we change row border color, expect that cache is invalidated and paint prod uces expected image.
5 --> 5 -->
6 <html> 6 <html>
7 <head> 7 <head>
8 <title></title> 8 <title></title>
9 <link rel="stylesheet" href="../../../fast/table/border-collapsing/resou rces/cached.css"> 9 <link rel="stylesheet" href="../../../fast/table/border-collapsing/resou rces/cached.css">
10 <script src="resources/paint-invalidation-test.js"></script> 10 <script src="resources/paint-invalidation-test.js"></script>
11 <script type="text/javascript"> 11 <script type="text/javascript">
12 window.expectedPaintInvalidationObjects = [
13 "LayoutTableCell TD",
14 "LayoutTableCell TD",
15 "LayoutTableCell TD",
16 "LayoutTableRow TR id='row'",
17 ];
18 function paintInvalidationTest() { 12 function paintInvalidationTest() {
19 document.getElementById("row").style.borderColor = "yellow"; 13 document.getElementById("row").style.borderColor = "yellow";
20 } 14 }
21 </script> 15 </script>
22 </head> 16 </head>
23 <body onload="runPaintInvalidationTest()"> 17 <body onload="runPaintInvalidationTest()">
24 <table style="border-collapse:collapse; border:1px solid blue"> 18 <table style="border-collapse:collapse; border:1px solid blue">
25 <tr style="border:4px solid pink" id="row"> 19 <tr style="border:4px solid pink" id="row">
26 <td style="border:2px solid lime"/> 20 <td style="border:2px solid lime"/>
27 </tr> 21 </tr>
28 <tr> 22 <tr>
29 <td/> 23 <td/>
30 </tr> 24 </tr>
31 </table> 25 </table>
32 </body> 26 </body>
33 </html> 27 </html>
34 28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698