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

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

Issue 8008019: Merge 95461 - Child not placed correctly when beforeChild (table part) (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 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
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 seperate 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 <body> 19 <body>
20 <div class="container"> 20 <div class="container">
21 <div style="display: table">1234</div> 21 <div style="display: table">1234</div>
22 </div> 22 </div>
23 <script> 23 <script>
24 document.body.offsetTop; 24 document.body.offsetTop;
25 document.body.style.color = 'blue'; 25 document.body.style.color = 'blue';
26 </script> 26 </script>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698