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

Side by Side Diff: LayoutTests/fast/runin/runin-not-go-into-float.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 <!-- PASS on one line, followed by EFABCD on the second line. All text should be of same size 40 px. --> 2 <!-- PASS on one line, followed by EFABCD on the second line. All text should be of same size 40 px. -->
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 #target:before { 6 #target:before {
7 content: "PASS"; 7 content: "PASS";
8 display: run-in; 8 display: run-in;
9 color: green; 9 color: green;
10 } 10 }
11 span:before { 11 span:before {
12 content: "EF"; 12 content: "EF";
13 } 13 }
14 </style> 14 </style>
15 <div id="target" style="color: blue"> 15 <div id="target" style="color: blue">
16 <span style="float: left">AB</span> 16 <span style="float: left">AB</span>
17 <div id="inner">CD</div> 17 <div id="inner">CD</div>
18 </div> 18 </div>
19 <script> 19 <script>
20 document.body.offsetTop; 20 document.body.offsetTop;
21 document.body.style.fontSize = "40px"; 21 document.body.style.fontSize = "40px";
22 </script> 22 </script>
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698