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

Side by Side Diff: LayoutTests/fast/multicol/span/clone-before-after-content-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 <style>
4 #test1 { -webkit-column-count: 1; }
5 #test2 { display: block; }
6 #test3::after { display: block; content: "A"; }
7 #test4 { -webkit-column-span: all; }
8 </style>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
12 function runTest(){
13 test1 = document.createElement('div');
14 test1.setAttribute('id', 'test1');
15 document.body.appendChild(test1);
16 test2 = document.createElement('div');
17 test2.setAttribute('id', 'test2');
18 test1.appendChild(test2);
19 test3 = document.createElement('div');
20 test3.setAttribute('id', 'test3');
21 test2.appendChild(test3);
22 test4 = document.createElement('span');
23 test4.setAttribute('id', 'test4');
24 test3.appendChild(test4);
25 document.body.offsetTop;
26 test4.style.display='block';
27 }
28 window.onload = runTest
29 </script>
30 </head>
31 <body>
32 Test passes if it does not crash.
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698