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

Side by Side Diff: LayoutTests/fast/multicol/span/split-flow-anonymous-wrapper-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 Test passes if it does crash.
4 <style>
5 .b1 { display: block; -webkit-column-width: 100px; }
6 .d1 { -webkit-column-span: all; }
7 </style>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11
12 function runTest() {
13 div1 = document.createElement('div');
14 div1.setAttribute('class', 'd1');
15 button1 = document.createElement('button');
16 button1.setAttribute('class', 'b1');
17 document.documentElement.appendChild(button1);
18 document.documentElement.offsetTop;
19 button1.appendChild(div1);
20 document.documentElement.offsetTop;
21 document.documentElement.innerHTML = "PASS";
22 }
23 window.onload = runTest;
24 </script>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698