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

Side by Side Diff: LayoutTests/fast/multicol/old/span/column-span-inside-multicol-webkit-box.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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 p { -webkit-column-span: all; } 4 p { -webkit-column-span: all; }
5 body { display: -webkit-box; -webkit-column-count: 3;} 5 body { display: -webkit-box; -webkit-column-count: 3;}
6 </style> 6 </style>
7 </head> 7 </head>
8 <body> 8 <body>
9 <script> 9 <script>
10 if (window.testRunner) 10 if (window.testRunner)
11 testRunner.dumpAsText(); 11 testRunner.dumpAsText();
12 document.body.offsetTop; 12 document.body.offsetTop;
13 document.body.appendChild(document.createElement('p')); 13 document.body.appendChild(document.createElement('p'));
14 document.write("Test passes if no crash."); 14 document.write("Test passes if no crash.");
15 </script> 15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698