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

Side by Side Diff: LayoutTests/fast/multicol/span/table-multi-column-crash.html

Issue 9562023: Merge 107987 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 9 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/table-multi-column-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 Test passes if it does not crash. 4 Test passes if it does not crash.
5 <style> 5 <style>
6 .table_span { -webkit-column-span: all;} 6 .table_span { -webkit-column-span: all;}
7 .table_container { -webkit-column-count: 2; } 7 .table_container { -webkit-column-count: 2; }
8 </style> 8 </style>
9 <script> 9 <script>
10 if (window.layoutTestController) 10 if (window.layoutTestController)
11 layoutTestController.dumpAsText(); 11 layoutTestController.dumpAsText();
12 12
13 document.body.offsetTop; 13 document.body.offsetTop;
14 table_span = document.createElement('table'); 14 table_span = document.createElement('table');
15 table_span.setAttribute('class', 'table_span'); 15 table_span.setAttribute('class', 'table_span');
16 table_container = document.createElement('table'); 16 table_container = document.createElement('table');
17 table_container.setAttribute('class', 'table_container'); 17 table_container.setAttribute('class', 'table_container');
18 table_caption = document.createElement('caption'); 18 table_caption = document.createElement('caption');
19 table_caption.appendChild(table_span); 19 table_caption.appendChild(table_span);
20 table_container.appendChild(table_caption); 20 table_container.appendChild(table_caption);
21 document.body.appendChild(table_container); 21 document.body.appendChild(table_container);
22 document.body.offsetTop; 22 document.body.offsetTop;
23 23
24 table_caption.parentNode.removeChild(table_caption); 24 table_caption.parentNode.removeChild(table_caption);
25 </script> 25 </script>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/span/table-multi-column-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698