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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/fixed-table-overflow.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 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 <html> 1 <html>
2 <head> 2 <head>
3 <link rel="stylesheet" href="resources/default.css"> 3 <link rel="stylesheet" href="resources/default.css">
4 <style> 4 <style>
5 table { top: 0px; left: 0px; border-spacing: 0px; position: absolute; } 5 table { top: 0px; left: 0px; border-spacing: 0px; position: absolute; }
6 td { background: green; padding: 0px; border-style: none; border: 0px; } 6 td { background: green; padding: 0px; border-style: none; border: 0px; }
7 td.fixed { position: fixed; left: 100px; top: 0px; } 7 td.fixed { position: fixed; left: 100px; top: 0px; }
8 </style> 8 </style>
9 <script src="resources/text-based-repaint.js"></script> 9 <script src="resources/text-based-repaint.js"></script>
10 <script> 10 <script>
(...skipping 12 matching lines...) Expand all
23 </script> 23 </script>
24 </head> 24 </head>
25 <body style="height:2000px;"> 25 <body style="height:2000px;">
26 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: Layer f ixed position logic needs more basic testing --> 26 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: Layer f ixed position logic needs more basic testing -->
27 <!-- You should see no red on this page. --> 27 <!-- You should see no red on this page. -->
28 <table> 28 <table>
29 <tr><td></td><td></td></tr> 29 <tr><td></td><td></td></tr>
30 <tr><td class="red"></td><td id="moveMe"><div style="position: relative; left: -100px; top: 0px;" class="green"></div></td></tr> 30 <tr><td class="red"></td><td id="moveMe"><div style="position: relative; left: -100px; top: 0px;" class="green"></div></td></tr>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698