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

Side by Side Diff: LayoutTests/fast/runin/runin-between-list-marker-and-before-content.html

Issue 10447080: Merge 117865 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 6 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 RUNIN between list marker and ABCD. All text should be of same 40px size. --> 2 <html style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;">
3 <html> 3 <!-- Test passes if you see RUNIN, followed by list marker and ABCD. All text sh ould be of same 50px size. -->
4 <body style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;">
5 <style> 4 <style>
6 li:before { content: "AB"; } 5 li:before { content: "AB"; }
7 </style> 6 </style>
8 <div style="display: run-in; color: green">RUNIN</div> 7 <div style="display: run-in; color: green">RUNIN</div>
9 <li style="color: blue">CD</li> 8 <li style="color: orange">CD</li>
10 <script> 9 <script>
11 document.body.offsetTop; 10 document.body.offsetTop;
12 document.body.style.fontSize = "40px"; 11 document.body.style.fontSize = "50px";
13 </script> 12 </script>
14 </body> 13 </body>
15 </html> 14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698