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

Side by Side Diff: LayoutTests/fast/multicol/span/split-inline-wrong-post-block-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
(Empty)
1 <html>
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6
7 function runTest() {
8 var container = document.createElement('div');
9 container.style['-webkit-column-count'] = 1;
10 document.body.appendChild(container);
11 var test1 = document.createElement('div');
12 test1.style['-webkit-column-span'] = 'all';
13 container.appendChild(test1);
14 var test2 = document.createElement('span');
15 container.appendChild(test2);
16 test2.appendChild(document.createElement('div'));
17 var test3 = document.createElement('div');
18 test3.style.display = 'table-column';
19 container.appendChild(test3);
20 container.appendChild(document.createElement('div'));
21 }
22 </script>
23 </head>
24 <body onload="runTest()">
25 Test passes if it does not crash.
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698