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

Side by Side Diff: LayoutTests/fast/block/float/float-originating-line-deleted-crash.html

Issue 7634029: Merge 92798 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
Patch Set: Created 9 years, 4 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/float/float-originating-line-deleted-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 Test passes if it does not crash. 2 Test passes if it does not crash.
3 <script> 3 <script>
4 if (window.layoutTestController) { 4 if (window.layoutTestController) {
5 layoutTestController.dumpAsText(); 5 layoutTestController.dumpAsText();
6 layoutTestController.waitUntilDone(); 6 layoutTestController.waitUntilDone();
7 } 7 }
8 8
9 function runTest() 9 function runTest()
10 { 10 {
11 child = document.getElementById('test'); 11 child = document.getElementById('test');
12 child.parentNode.removeChild(child); 12 child.parentNode.removeChild(child);
13 13
14 document.body.offsetTop; 14 document.body.offsetTop;
15 15
16 if (window.layoutTestController) 16 if (window.layoutTestController)
17 layoutTestController.notifyDone(); 17 layoutTestController.notifyDone();
18 } 18 }
19 19
20 setTimeout("runTest();", 0); 20 setTimeout("runTest();", 0);
21 </script> 21 </script>
22 <style id='test'> 22 <style id='test'>
23 p { float: left; } 23 p { float: left; }
24 </style> 24 </style>
25 <table><span><p></p><p></p></span></table> 25 <table><span><p></p><p></p></span></table>
26 </html> 26 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/block/float/float-originating-line-deleted-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698