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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append.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
(Empty)
1 <!--
2 Calculating collapsed borders for big tables is expensive, so we cache them and recalculate when needed.
3 Here we append new cell, expect that cache is invalidated and paint produces exp ected image.
4 -->
5 <html>
6 <head>
7 <title></title>
8 <link rel="stylesheet" href="../../../fast/table/border-collapsing/resou rces/cached.css">
9 <script src="../resources/text-based-repaint.js"></script>
10 <script type="text/javascript">
11 function repaintTest() {
12 newCell = document.createElement("td");
13 newCell.style.borderWidth = "6px";
14 newCell.style.borderStyle = "solid";
15 newCell.style.borderColor = "yellow";
16 document.getElementById("row").appendChild(newCell);
17 }
18 </script>
19 </head>
20 <body onload="runRepaintAndPixelTest()">
21 <table style="border-collapse:collapse; border:2px solid blue">
22 <tr id="row">
23 <td style="border:4px solid lime"/>
24 </tr>
25 </table>
26 </body>
27 </html>
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698