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

Side by Side Diff: LayoutTests/fast/css/table-rules-attribute-with-frame1.html

Issue 24438004: Rename testRunner.dumpAsText(true) to testRunner.dumpAsTextWithPixelResults() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more tests Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd">
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>CSS Test: The 'rules' attribute and the 'frame' attribute</title> 4 <title>CSS Test: The 'rules' attribute and the 'frame' attribute</title>
5 <meta name="assert" content="The first table has four vertical lines cap ped and bottomed by two horizontal lines."> 5 <meta name="assert" content="The first table has four vertical lines cap ped and bottomed by two horizontal lines.">
6 <meta name="assert" content="The second table has 2 vertical lines."> 6 <meta name="assert" content="The second table has 2 vertical lines.">
7 <meta name="assert" content="The third table has 2 vertical lines capped by a horizontal line."> 7 <meta name="assert" content="The third table has 2 vertical lines capped by a horizontal line.">
8 <meta name="assert" content="The fourth table has 2 vertical lines botto med by a horizontal line."> 8 <meta name="assert" content="The fourth table has 2 vertical lines botto med by a horizontal line.">
9 <meta name="assert" content="The fifth table has 3 vertical lines."> 9 <meta name="assert" content="The fifth table has 3 vertical lines.">
10 <meta name="assert" content="The sixth table has 3 vertical lines."> 10 <meta name="assert" content="The sixth table has 3 vertical lines.">
11 <style type="text/css"> 11 <style type="text/css">
12 td 12 td
13 { 13 {
14 height: 20px; 14 height: 20px;
15 width: 20px; 15 width: 20px;
16 } 16 }
17 </style> 17 </style>
18 <script> 18 <script>
19 if (window.testRunner) 19 if (window.testRunner)
20 testRunner.dumpAsText(true); 20 testRunner.dumpAsTextWithPixelResults();
21 </script> 21 </script>
22 </head> 22 </head>
23 <body> 23 <body>
24 <table rules="cols" frame="box"> 24 <table rules="cols" frame="box">
25 <tr> 25 <tr>
26 <td></td> 26 <td></td>
27 <td></td> 27 <td></td>
28 <td></td> 28 <td></td>
29 </tr> 29 </tr>
30 <tr> 30 <tr>
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 <td></td> 93 <td></td>
94 </tr> 94 </tr>
95 <tr> 95 <tr>
96 <td></td> 96 <td></td>
97 <td></td> 97 <td></td>
98 <td></td> 98 <td></td>
99 </tr> 99 </tr>
100 </table> 100 </table>
101 </body> 101 </body>
102 </html> 102 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698