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

Side by Side Diff: LayoutTests/fast/block/block-remove-child-delete-line-box-crash.html

Issue 9160034: Merge 105750 - Crash when accessing removed parent in InlineTextBox. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/fast/block/block-remove-child-delete-line-box-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <style> 2 <style>
3 div { -webkit-column-count:2; } 3 div { -webkit-column-count:2; }
4 h1 { -webkit-column-span: all; } 4 h1 { -webkit-column-span: all; }
5 </style> 5 </style>
6 <body> 6 <body>
7 <summary> 7 <summary>
8 <div id="div1"> 8 <div id="div1">
9 BeforeText<span id="span1">SpanText</span>AfterText 9 BeforeText<span id="span1">SpanText</span>AfterText
10 <p>ParaText</p> 10 <p>ParaText</p>
11 </div> 11 </div>
12 <script> 12 <script>
13 if (window.layoutTestController) 13 if (window.layoutTestController)
14 layoutTestController.dumpAsText(); 14 layoutTestController.dumpAsText();
15 15
16 document.body.offsetTop; 16 document.body.offsetTop;
17 var h1 = document.createElement('h1'); 17 var h1 = document.createElement('h1');
18 h1.appendChild(document.createTextNode('heading')); 18 h1.appendChild(document.createTextNode('heading'));
19 div1.insertBefore(h1, span1); 19 div1.insertBefore(h1, span1);
20 </script> 20 </script>
21 </summary> 21 </summary>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/block/block-remove-child-delete-line-box-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698