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

Side by Side Diff: LayoutTests/fast/runin/generated-content-crash.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 <html style="font-family: ahem; font-size: 50px; -webkit-font-smoothing: none;"> 2 <html style="font-family: ahem; font-size: 50px; -webkit-font-smoothing: none;">
3 <!-- 'A' orange box should be inside the green box, which in turn is inside the purple box. --> 3 <!-- 'A' orange box should be inside the green box, which in turn is inside the purple box. -->
4 <body> 4 <body>
5 <style> 5 <style>
6 #div1:before { 6 #div1:before {
7 display: run-in; 7 display: run-in;
8 content: 'A'; 8 content: 'A';
9 color: orange; 9 color: orange;
10 } 10 }
11 </style> 11 </style>
12 <div id="div1" style="display: inline-block; border: 10px solid purple"> 12 <div id="div1" style="display: inline-block; border: 10px solid purple">
13 <div style="border: 10px solid green"></div> 13 <div style="border: 10px solid green"></div>
14 </div> 14 </div>
15 </body> 15 </body>
16 </html> 16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698