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

Side by Side Diff: LayoutTests/fast/multicol/span/removal-of-multicol-span-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 <style>
2 body { -webkit-column-width: 0; }
3 #container { position: relative; }
4 .hardware:last-of-type { -webkit-column-span: all; }
5 </style>
6
7 <body>
8 <script>
9 function clear() {
10 document.documentElement.removeChild(document.body);
11 document.documentElement.innerHTML='PASS, if no exception or crash';
12 if (window.testRunner) {
13 testRunner.notifyDone();
14 }
15 }
16 setTimeout("clear();", 0);
17 if (window.testRunner) {
18 testRunner.waitUntilDone();
19 testRunner.dumpAsText();
20 }
21 </script>
22 <div id="container">
23 <div class="hardware box">
24 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698