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

Unified Diff: LayoutTests/fast/multicol/remove-child-split-flow-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/remove-child-split-flow-crash.html
diff --git a/LayoutTests/fast/multicol/remove-child-split-flow-crash.html b/LayoutTests/fast/multicol/remove-child-split-flow-crash.html
deleted file mode 100644
index e01dbb5626ec974d98ae070930b905289301d3c2..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/remove-child-split-flow-crash.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-Test passes if it does not crash.
-<style>
-.class1 { -webkit-column-span: all; }
-.class2 { -webkit-column-width: 1px; }
-.class3 { display: inline-block; }
-.class4 { section; -webkit-column-span: all; }
-</style>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-function crash() {
- i1 = document.createElement('i');
- document.documentElement.appendChild(i1);
- i2 = document.createElement('i');
- i1.appendChild(i2);
- div1 = document.createElement('div');
- div2 = document.createElement('div');
- div2.setAttribute('class', 'class3');
- i3 = document.createElement('i');
- div3 = document.createElement('div');
- div3.setAttribute('class', 'class1');
- div4 = document.createElement('div');
- div4.setAttribute('class', 'class4');
- i2.appendChild(div2);
- div2.appendChild(div1);
- div1.appendChild(div4);
- document.documentElement.offsetTop;
- div1.setAttribute('class', 'class2');
- div4.appendChild(div3);
- document.documentElement.offsetTop;
- i3.appendChild(div3);
-}
-window.onload = crash;
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698