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

Side by Side Diff: LayoutTests/fast/block/block-not-removed-from-parent-lineboxes-crash.html

Issue 7292017: Merge 90068 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 5 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-not-removed-from-parent-lineboxes-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 <body> 2 <body>
3 <div style="width: 25px"> 3 <div style="width: 25px">
4 <img style="width: 20px"><img id="test1" style="width: 50px; display: none;"><sp an id="test2" style="float: left;">AB</span>CD</div> 4 <img style="width: 20px"><img id="test1" style="width: 50px; display: none;"><sp an id="test2" style="float: left;">AB</span>CD</div>
5 <script> 5 <script>
6 if (window.layoutTestController) 6 if (window.layoutTestController)
7 layoutTestController.dumpAsText(); 7 layoutTestController.dumpAsText();
8 8
9 document.body.offsetTop; 9 document.body.offsetTop;
10 test1.style.display = ""; 10 test1.style.display = "";
11 document.body.offsetTop; 11 document.body.offsetTop;
12 test2.parentNode.removeChild(test2); 12 test2.parentNode.removeChild(test2);
13 13
14 document.body.offsetTop; 14 document.body.offsetTop;
15 document.body.innerHTML = "PASS: does not crash"; 15 document.body.innerHTML = "PASS: does not crash";
16 </script> 16 </script>
17 </body> 17 </body>
18 </html> 18 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/block/block-not-removed-from-parent-lineboxes-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698