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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/table-row-bg-change.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-row-bg-change.html --> 1 <!-- Based on fast/repaint/table-row-bg-change.html -->
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Test for crbug.com/357291</title> 4 <title>Test for crbug.com/357291</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 "LayoutTableCell TD",
10 "LayoutTableCell TD",
11 "LayoutTableRow TR id='first'",
12 ];
13 function paintInvalidationTest() 7 function paintInvalidationTest()
14 { 8 {
15 var first = document.getElementById('first'); 9 var first = document.getElementById('first');
16 first.style.backgroundColor = 'green'; 10 first.style.backgroundColor = 'green';
17 } 11 }
18 </script> 12 </script>
19 <style> 13 <style>
20 table { 14 table {
21 height: 200px; 15 height: 200px;
22 width: 200px; 16 width: 200px;
(...skipping 13 matching lines...) Expand all
36 </tr> 30 </tr>
37 <tr> 31 <tr>
38 <td>A</td> 32 <td>A</td>
39 <td>A</td> 33 <td>A</td>
40 <td>A</td> 34 <td>A</td>
41 </tr> 35 </tr>
42 </table> 36 </table>
43 </body> 37 </body>
44 </html> 38 </html>
45 39
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698