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

Side by Side Diff: LayoutTests/fast/table/border-collapsing/cached-cell-remove.html

Issue 196573021: Remove testRunner.display calls from table border collapsing tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Calculating collapsed borders for big tables is expensive, so we cache them and recalculate when needed. 2 Calculating collapsed borders for big tables is expensive, so we cache them and recalculate when needed.
3 Here we remove cell, expect that cache is invalidated and paint produces expecte d image. 3 Here we remove cell, expect that cache is invalidated and paint produces expecte d image.
4 --> 4 -->
5 <html> 5 <html>
6 <head> 6 <head>
7 <title></title> 7 <title></title>
8 <link rel="stylesheet" href="resources/cached.css"> 8 <link rel="stylesheet" href="resources/cached.css">
9 <script src="../../../resources/run-after-display.js"></script>
9 <script type="text/javascript"> 10 <script type="text/javascript">
10 function test() { 11 function test() {
11 document.body.offsetTop;
12 if (window.testRunner) 12 if (window.testRunner)
13 testRunner.display(); 13 testRunner.waitUntilDone();
14 barCell = document.getElementById("bar"); 14 runAfterDisplay(function() {
15 document.getElementById("row").removeChild(barCell); 15 barCell = document.getElementById("bar");
16 document.getElementById("row").removeChild(barCell);
17 if (window.testRunner)
18 testRunner.notifyDone();
19 });
16 } 20 }
17 </script> 21 </script>
18 </head> 22 </head>
19 <body onload="test()"> 23 <body onload="test()">
20 <table style="border-collapse:collapse; border:2px solid blue"> 24 <table style="border-collapse:collapse; border:2px solid blue">
21 <tr id="row"> 25 <tr id="row">
22 <td style="border:4px solid lime"/> 26 <td style="border:4px solid lime"/>
23 <td style="border-left:6px solid yellow" id="bar"/> 27 <td style="border-left:6px solid yellow" id="bar"/>
24 <td/> 28 <td/>
25 </tr> 29 </tr>
26 </table> 30 </table>
27 </body> 31 </body>
28 </html> 32 </html>
29 33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698