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

Side by Side Diff: LayoutTests/tables/mozilla/bugs/bug119786.html

Issue 216933006: Remove carriage returns from LayoutTests (18) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Expectations 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 <html><head> 1 <html><head>
2 2
3 <title>table creation</title><style type="text/css"> 3 <title>table creation</title><style type="text/css">
4 caption { color: green; background-color: lightyellow; } 4 caption { color: green; background-color: lightyellow; }
5 </style> 5 </style>
6 <script type="text/javascript"> 6 <script type="text/javascript">
7 function createTable (caption) { 7 function createTable (caption) {
8 var table = document.createElement('table'); 8 var table = document.createElement('table');
9 table.border = 1; 9 table.border = 1;
10 document.body.appendChild(table); 10 document.body.appendChild(table);
(...skipping 27 matching lines...) Expand all
38 38
39 }</script></head> 39 }</script></head>
40 <body> 40 <body>
41 <script type="text/javascript"> 41 <script type="text/javascript">
42 createTable('Where is the table?'); 42 createTable('Where is the table?');
43 document.body.appendChild(document.createElement('hr')); 43 document.body.appendChild(document.createElement('hr'));
44 createTable(); 44 createTable();
45 document.body.appendChild(document.createElement('hr')); 45 document.body.appendChild(document.createElement('hr'));
46 createTable1('Here is the table'); 46 createTable1('Here is the table');
47 </script><table border="1"><thead><tr><td>Header</td></tr></thead><caption>Where is the table?</caption><tbody><tr><td>Kibology</td></tr></tbody></table><hr><ta ble border="1"><thead><tr><td>Header</td></tr></thead><tbody><tr><td>Kibology</t d></tr></tbody></table><hr><table border="1"><thead><tr><td>Header</td></tr></th ead><caption>Here is the table</caption><tbody><tr><td>Kibology</td></tr></tbody ></table> 47 </script><table border="1"><thead><tr><td>Header</td></tr></thead><caption>Where is the table?</caption><tbody><tr><td>Kibology</td></tr></tbody></table><hr><ta ble border="1"><thead><tr><td>Header</td></tr></thead><tbody><tr><td>Kibology</t d></tr></tbody></table><hr><table border="1"><thead><tr><td>Header</td></tr></th ead><caption>Here is the table</caption><tbody><tr><td>Kibology</td></tr></tbody ></table>
48 </body></html> 48 </body></html>
OLDNEW
« no previous file with comments | « LayoutTests/tables/layering/paint-test-layering-2.html ('k') | LayoutTests/tables/mozilla/bugs/bug123862.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698