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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/table-col-background.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/table-col-background.html --> 1 <!-- Based on fast/repaint/table-col-background.html -->
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=5821</title> 4 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=5821</title>
5 <script src="resources/paint-invalidation-test.js" type="text/javascript"></ script> 5 <script src="resources/paint-invalidation-test.js" type="text/javascript"></ script>
6 <script type="text/javascript"> 6 <script type="text/javascript">
7 window.expectedPaintInvalidationObjects = [
8 "LayoutTableCell TD",
9 "LayoutTableCol COL id='col'",
10 ];
11 function paintInvalidationTest() 7 function paintInvalidationTest()
12 { 8 {
13 document.getElementById("col").style.backgroundColor = "green"; 9 document.getElementById("col").style.backgroundColor = "green";
14 } 10 }
15 </script> 11 </script>
16 </head> 12 </head>
17 <body onload="runPaintInvalidationTest()"> 13 <body onload="runPaintInvalidationTest()">
18 <table> 14 <table>
19 <col id="col" style="background-color: red;"> 15 <col id="col" style="background-color: red;">
20 <tr> 16 <tr>
21 <td style="width: 100px; height: 100px;"> 17 <td style="width: 100px; height: 100px;">
22 </td> 18 </td>
23 </tr> 19 </tr>
24 </table> 20 </table>
25 </body> 21 </body>
26 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698