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

Side by Side Diff: LayoutTests/fast/multicol/span/runin-continuation-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 .div1 { -webkit-column-span: all; }
6 .divContainer::after { content: ''; }
7 .divContainer { -webkit-column-width: 1px; }
8 .runin { display: run-in; }
9 </style>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13
14 document.body.offsetTop;
15 div1 = document.createElement('div');
16 div1.setAttribute('class', 'div1');
17 div2 = document.createElement('div');
18 div3 = document.createElement('div');
19
20 divContainer = document.createElement('div');
21 divContainer.setAttribute('class', 'divContainer');
22 document.documentElement.appendChild(divContainer);
23
24 div2.appendChild(div1);
25 divContainer.appendChild(div2);
26 divContainer.appendChild(div3);
27 document.body.offsetTop;
28 div2.setAttribute('class', 'runin');
29 document.body.offsetTop;
30 document.body.innerHTML = "PASS";
31 </script>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698