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

Side by Side Diff: LayoutTests/fast/runin/runin-into-div-with-float-child.html

Issue 8216022: Merge 97075 - Style for updated due to inability to locate (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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 <!-- You should see green A, followed by orange ABCD, followed by blue EFGH and green IJKL. None of these should be repeated and all should be of 40px size. --> 2 <!-- You should see green A, followed by orange ABCD, followed by blue EFGH and green IJKL. None of these should be repeated and all should be of 40px size. -->
3 <html> 3 <html>
4 <body style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;"> 4 <body style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;">
5 <style> 5 <style>
6 #test::before { 6 #test::before {
7 content: "EFGH"; 7 content: "EFGH";
8 color: blue; 8 color: blue;
9 } 9 }
10 </style> 10 </style>
11 <div style="display: run-in; color: orange">ABCD</div><div id="test" style="colo r: green"><div style="float:left">A</div>IJKL</div> 11 <div style="display: run-in; color: orange">ABCD</div><div id="test" style="colo r: green"><div style="float:left">A</div>IJKL</div>
12 <script> 12 <script>
13 document.body.offsetTop; 13 document.body.offsetTop;
14 document.body.style.fontSize = "40px"; 14 document.body.style.fontSize = "40px";
15 </script> 15 </script>
16 </body> 16 </body>
17 </html> 17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698