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

Side by Side Diff: LayoutTests/fast/runin/move-run-in-original-position-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 followed by 'B' purple box in next line. --> 3 <!-- 'A' orange box followed by 'B' purple box in next line. -->
4 <body> 4 <body>
5 <style> 5 <style>
6 .li1 { display: run-in; color: orange; } 6 .li1 { display: run-in; color: orange; }
7 .div1::before { display: table-row; content: 'B'; color: purple; } 7 .div1::before { display: table-row; content: 'B'; color: purple; }
8 </style> 8 </style>
9 <script> 9 <script>
10 document.body.offsetTop; 10 document.body.offsetTop;
11 li1 = document.createElement('li'); 11 li1 = document.createElement('li');
12 li1.setAttribute('class', 'li1'); 12 li1.setAttribute('class', 'li1');
13 li1.appendChild(document.createTextNode('A')); 13 li1.appendChild(document.createTextNode('A'));
14 document.body.appendChild(li1); 14 document.body.appendChild(li1);
15 div1 = document.createElement('div'); 15 div1 = document.createElement('div');
16 document.body.appendChild(div1); 16 document.body.appendChild(div1);
17 document.body.offsetTop; 17 document.body.offsetTop;
18 div1.setAttribute('class', 'div1'); 18 div1.setAttribute('class', 'div1');
19 </script> 19 </script>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698