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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/table-outer-border.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
(Empty)
1 <!-- Based on fast/repaint/table-outer-border.html -->
2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd">
3 <html>
4 <head>
5 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=12817</title>
6 <style type="text/css" media="all">
7 table {
8 border-collapse: collapse;
9 }
10
11 table td {
12 border: 15px solid red;
13 background-color: green;
14 height: 50px;
15 width: 100px;
16 }
17
18 table.green td {
19 border-color: green;
20 }
21 </style>
22 <script src="resources/paint-invalidation-test.js"></script>
23 <script>
24 function paintInvalidationTest()
25 {
26 var container = document.getElementById('container');
27 var table = document.getElementById('table');
28 var newTable = table.cloneNode(true);
29 newTable.className = "green";
30 container.replaceChild(newTable, table);
31 }
32 </script>
33 </head>
34 <body onload="runPaintInvalidationTest();">
35 <div id="container" style="width: 500px;">
36 <table id="table">
37 <tr>
38 <td></td>
39 </tr>
40 <tr>
41 <td></td>
42 </tr>
43 </table>
44 </div>
45 </body>
46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698