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

Side by Side Diff: LayoutTests/fast/multicol/span/positioned-objects-not-removed-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 <!DOCTYPE html>
2 <html>
3 <body>
4 <style>
5 #test0 { -webkit-columns: 1px; }
6 #test1 { -webkit-perspective: 1; display: compact; }
7 #test1:before { content: ""; }
8 #test1:after { display: table; content: ""; }
9 #test2 { -webkit-column-span: all; }
10 #test4:last-child { position:fixed; }
11 .c0 { display: table-header-group; }
12 .c1:first-letter { content: ""; }
13 </style>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17
18 onload = function() {
19 test0 = document.createElement('div');
20 test0.setAttribute('id', 'test0');
21 document.body.appendChild(test0);
22 test1 = document.createElement('div');
23 test1.setAttribute('id','test1');
24 test0.appendChild(test1);
25 test2 = document.createElement('div');
26 test2.setAttribute('id','test2');
27 test1.appendChild(test2);
28 test3 = document.createElement('span');
29 test1.appendChild(test3);
30 test4 = document.createElement('div');
31 test4.setAttribute('id', 'test4');
32 test3.appendChild(test4);
33 document.body.offsetTop;
34 test2.setAttribute('class', 'c0');
35 test4.setAttribute('class', 'c1');
36 document.body.offsetTop;
37 document.body.innerHTML = "WebKit Bug - Crash in multi-column layout.<br />P ASS. WebKit didn't crash.";
38 }
39 </script>
40 </body>
41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698