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

Side by Side Diff: LayoutTests/fast/table/table-row-before-child-in-block.html

Issue 216553010: Remove carriage returns from LayoutTests (04) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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> 1 <html>
2 <style> 2 <style>
3 #target 3 #target
4 { 4 {
5 border-color: green; 5 border-color: green;
6 border-style: solid; 6 border-style: solid;
7 padding: 1em 1em; 7 padding: 1em 1em;
8 } 8 }
9 9
10 #target::before 10 #target::before
11 { 11 {
12 content: "BEFORE"; 12 content: "BEFORE";
13 display: table-row; 13 display: table-row;
14 border-color: blue; 14 border-color: blue;
15 border-style: solid; 15 border-style: solid;
16 padding: 1em 1em; 16 padding: 1em 1em;
17 } 17 }
18 </style> 18 </style>
19 <div id="target"> 19 <div id="target">
20 <div id="span"> CONTENT</div> 20 <div id="span"> CONTENT</div>
21 </div> 21 </div>
22 <script> 22 <script>
23 document.body.offsetTop; 23 document.body.offsetTop;
24 target.style.color = "red"; 24 target.style.color = "red";
25 </script> 25 </script>
26 </html> 26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698