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

Side by Side Diff: LayoutTests/fast/multicol/span/textbox-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, 6 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 <head>
4 <style>
5 #test1 {
6 text-indent: -1em;
7 content: counter(c);
8 -webkit-column-count: 1;
9 }
10 #test3 {
11 -webkit-column-span: all;
12 }
13 </style>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17
18 function crash() {
19 test1 = document.createElement('div');
20 test1.setAttribute('id', 'test1');
21 document.body.appendChild(test1);
22 test2 = document.createElement('div');
23 test1.appendChild(test2);
24 test3 = document.createElement('div');
25 test3.setAttribute('id', 'test3');
26 test2.appendChild(test3);
27 test2.appendChild(document.createTextNode('A'));
28 test2.style.display = '-webkit-box';
29 document.body.offsetTop;
30 test3.style.display = 'list-item';
31 document.body.offsetTop;
32 document.body.style.zoom = 2;
33 }
34 window.onload = crash;
35 </script>
36 </head>
37 <body>
38 Test passes if it does not crash.
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698