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

Side by Side Diff: LayoutTests/tables/mozilla/bugs/bug222846.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 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html> 3 <html>
4 <head> 4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 <title>table dom test</title> 6 <title>table dom test</title>
7 <style type="text/css"> 7 <style type="text/css">
8 table {width:200px} 8 table {width:200px}
9 table[summary="summ"] {font-size:24pt} 9 table[summary="summ"] {font-size:24pt}
10 </style> 10 </style>
11 <script type="text/javascript"> 11 <script type="text/javascript">
12 function dom(){ 12 function dom(){
13 var t = document.getElementById('t2'); 13 var t = document.getElementById('t2');
14 t.summary="summ"; 14 t.summary="summ";
15 } 15 }
16 </script> 16 </script>
17 </head> 17 </head>
18 18
19 <body onload="dom()"> 19 <body onload="dom()">
20 20
21 Both tables should look identical 21 Both tables should look identical
22 22
23 <table id="t2" border><caption>caption</caption><tbody><tr><td>cell1</td></tr></ tbody></table> 23 <table id="t2" border><caption>caption</caption><tbody><tr><td>cell1</td></tr></ tbody></table>
24 24
25 <table id="t2" summary="summ" border><caption>caption</caption><tbody><tr><td>ce ll1</td></tr></tbody></table> 25 <table id="t2" summary="summ" border><caption>caption</caption><tbody><tr><td>ce ll1</td></tr></tbody></table>
26 26
27 </body> 27 </body>
28 28
29 </html> 29 </html>
OLDNEW
« no previous file with comments | « LayoutTests/tables/mozilla/bugs/bug123862.html ('k') | LayoutTests/tables/mozilla/bugs/bug275625.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698