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

Side by Side Diff: LayoutTests/fast/block/block-add-child-crash.html

Issue 10383285: Merge 116174 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 7 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-add-child-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 WebKit Bug 84606 - ASSERT(beforeChildAnonymousContainer->isTable()); fails in Re nderBlock::addChildIgnoringAnonymousColumnBlocks.<br /> 4 WebKit Bug 84606 - ASSERT(beforeChildAnonymousContainer->isTable()); fails in Re nderBlock::addChildIgnoringAnonymousColumnBlocks.<br />
5 The test passes if it doesn't CRASH nor ASSERT. 5 The test passes if it doesn't CRASH nor ASSERT.
6 <style> 6 <style>
7 .container { -webkit-column-count: 1; } 7 .container { -webkit-column-count: 1; }
8 .columnSpan { -webkit-column-span: all; } 8 .columnSpan { -webkit-column-span: all; }
9 </style> 9 </style>
10 <li class="container"> 10 <li class="container">
11 <blockquote id="test"> 11 <blockquote id="test">
12 <table class="columnSpan"></table> 12 <table class="columnSpan"></table>
13 </blockquote> 13 </blockquote>
14 <textarea></textarea> 14 <textarea></textarea>
15 </li> 15 </li>
16 <script> 16 <script>
17 if (window.layoutTestController) 17 if (window.layoutTestController)
18 layoutTestController.dumpAsText(); 18 layoutTestController.dumpAsText();
19 19
20 document.body.offsetTop; 20 document.body.offsetTop;
21 var test = document.getElementById("test"); 21 var test = document.getElementById("test");
22 test.outerHTML = "PASS"; 22 test.outerHTML = "PASS";
23 </script> 23 </script>
24 </body> 24 </body>
25 </html> 25 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/block/block-add-child-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698