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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/table-row-before-after-content-around-table.html

Issue 2564123002: Run spellchecker on fast/table tests. (Closed)
Patch Set: rebaseline-cl Created 4 years 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- Test passes if you see three blue boxes in three seperate rows. --> 2 <!-- Test passes if you see three blue boxes in three separate rows. -->
3 <html style="font: 1em/1 Ahem, sans-serif;"> 3 <html style="font: 1em/1 Ahem, sans-serif;">
4 <style type="text/css"> 4 <style type="text/css">
5 .container:before 5 .container:before
6 { 6 {
7 content: "ABCD"; 7 content: "ABCD";
8 display: table-row; 8 display: table-row;
9 } 9 }
10 10
11 .container:after 11 .container:after
12 { 12 {
13 content: "EFGH"; 13 content: "EFGH";
14 display: table-row; 14 display: table-row;
15 } 15 }
16 16
17 </style> 17 </style>
18 </head> 18 </head>
19 <script src="../../resources/ahem.js"></script> 19 <script src="../../resources/ahem.js"></script>
20 <body> 20 <body>
21 <div class="container"> 21 <div class="container">
22 <div style="display: table">1234</div> 22 <div style="display: table">1234</div>
23 </div> 23 </div>
24 <script> 24 <script>
25 document.body.offsetTop; 25 document.body.offsetTop;
26 document.body.style.color = 'blue'; 26 document.body.style.color = 'blue';
27 </script> 27 </script>
28 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698