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

Unified Diff: LayoutTests/fast/multicol/float-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, 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/multicol/float-not-removed-crash.html
diff --git a/LayoutTests/fast/multicol/float-not-removed-crash.html b/LayoutTests/fast/multicol/float-not-removed-crash.html
deleted file mode 100644
index 9bdfd2c73ce61fbf6f9d452cd6953b116a85b736..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/float-not-removed-crash.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-Test passes if it does not crash.
-<style>
-.class1:nth-child(-n+6) { float: left; padding-bottom: 100px; }
-.class2:nth-child(even) { -webkit-backface-visibility: hidden; -webkit-column-span: all; }
-.class3 { -webkit-column-count: 65536; }
-</style>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-function crash() {
- test1 = document.createElement('div');
- test2 = document.createElement('div');
- test3 = document.createElement('div');
- test3.setAttribute('class', 'class3');
- document.documentElement.appendChild(test3);
- test4 = document.createElement('div');
- test4.setAttribute('class', 'class2');
- test5 = document.createElement('div');
- test5.setAttribute('class', 'class1');
- test6 = document.createElement('div');
- test7 = document.createElement('i');
- test8 = document.createTextNode("PASS. WebKit didn't crash.");
- test6.appendChild(test8);
- test6.appendChild(test7);
- test1.appendChild(test6);
- test3.appendChild(test1);
- test7.appendChild(test5);
- document.documentElement.offsetTop;
- setTimeout('test3.appendChild(test4);', 0);
- setTimeout('test2.appendChild(test7);', 2);
- setTimeout('if (window.testRunner) testRunner.notifyDone();', 4);
-}
-
-window.onload = crash;
-</script>
-</html>
« no previous file with comments | « LayoutTests/fast/multicol/float-multicol.html ('k') | LayoutTests/fast/multicol/float-not-removed-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698