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

Side by Side Diff: LayoutTests/fast/multicol/old/span/list-multi-column-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 <body> 3 <body>
4 Test passes if it does not crash. 4 Test passes if it does not crash.
5 <style> 5 <style>
6 .columns 6 .columns
7 { 7 {
8 -webkit-column-count: 2; 8 -webkit-column-count: 2;
9 -webkit-column-span: all; 9 -webkit-column-span: all;
10 } 10 }
(...skipping 19 matching lines...) Expand all
30 30
31 innerColumns = document.createElement('div'); 31 innerColumns = document.createElement('div');
32 innerColumns.setAttribute('class', 'columns'); 32 innerColumns.setAttribute('class', 'columns');
33 listChild.appendChild(innerColumns); 33 listChild.appendChild(innerColumns);
34 document.body.offsetTop; 34 document.body.offsetTop;
35 35
36 document.body.removeChild(outerColumns); 36 document.body.removeChild(outerColumns);
37 </script> 37 </script>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698