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

Side by Side Diff: LayoutTests/fast/multicol/span/removal-of-multicol-span-crash.html

Issue 9071019: Merge 102263 - Crash from multicol spans with layers (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/multicol/span/removal-of-multicol-span-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 <style> 1 <style>
2 body { -webkit-column-width: 0; } 2 body { -webkit-column-width: 0; }
3 #container { position: relative; } 3 #container { position: relative; }
4 .hardware:last-of-type { -webkit-column-span: all; } 4 .hardware:last-of-type { -webkit-column-span: all; }
5 </style> 5 </style>
6 6
7 <script> 7 <script>
8 function clear() { 8 function clear() {
9 document.documentElement.removeChild(document.body); 9 document.documentElement.removeChild(document.body);
10 document.documentElement.innerHTML='PASS, if no exception or crash'; 10 document.documentElement.innerHTML='PASS, if no exception or crash';
11 if (window.layoutTestController) { 11 if (window.layoutTestController) {
12 layoutTestController.notifyDone(); 12 layoutTestController.notifyDone();
13 } 13 }
14 } 14 }
15 setTimeout("clear();", 0); 15 setTimeout("clear();", 0);
16 if (window.layoutTestController) { 16 if (window.layoutTestController) {
17 layoutTestController.waitUntilDone(); 17 layoutTestController.waitUntilDone();
18 layoutTestController.dumpAsText(); 18 layoutTestController.dumpAsText();
19 } 19 }
20 </script> 20 </script>
21 <body> 21 <body>
22 <div id="container"> 22 <div id="container">
23 <div class="hardware box"> 23 <div class="hardware box">
24 </body> 24 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/span/removal-of-multicol-span-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698