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

Side by Side Diff: LayoutTests/fast/multicol/old/remove-child-split-flow-crash.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 Test passes if it does not crash. 3 Test passes if it does not crash.
4 <style> 4 <style>
5 .class1 { -webkit-column-span: all; } 5 .class1 { -webkit-column-span: all; }
6 .class2 { -webkit-column-width: 1px; } 6 .class2 { -webkit-column-width: 1px; }
7 .class3 { display: inline-block; } 7 .class3 { display: inline-block; }
8 .class4 { section; -webkit-column-span: all; } 8 .class4 { section; -webkit-column-span: all; }
9 </style> 9 </style>
10 <script> 10 <script>
(...skipping 18 matching lines...) Expand all
29 div1.appendChild(div4); 29 div1.appendChild(div4);
30 document.documentElement.offsetTop; 30 document.documentElement.offsetTop;
31 div1.setAttribute('class', 'class2'); 31 div1.setAttribute('class', 'class2');
32 div4.appendChild(div3); 32 div4.appendChild(div3);
33 document.documentElement.offsetTop; 33 document.documentElement.offsetTop;
34 i3.appendChild(div3); 34 i3.appendChild(div3);
35 } 35 }
36 window.onload = crash; 36 window.onload = crash;
37 </script> 37 </script>
38 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698