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

Unified Diff: LayoutTests/fast/multicol/span/update-after-content-before-child-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/span/update-after-content-before-child-crash.html
diff --git a/LayoutTests/fast/multicol/span/update-after-content-before-child-crash.html b/LayoutTests/fast/multicol/span/update-after-content-before-child-crash.html
deleted file mode 100644
index 11ae26815fc356536bf344f70fd3b1343e63804c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/span/update-after-content-before-child-crash.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<style>
-#columnContainer { -webkit-column-count: 600; }
-#divBlock::after { display: block; content: ''; }
-#columnSpanBlock:nth-last-child(even) { -webkit-column-span: all; }
-#table { float: right; }
-</style>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-onload = function() {
- columnContainer = document.createElement('div');
- columnContainer.setAttribute('id', 'columnContainer');
- document.body.appendChild(columnContainer);
- divBlock = document.createElement('div');
- divBlock.setAttribute('id', 'divBlock');
- columnContainer.appendChild(divBlock);
- columnSpanBlock = document.createElement('div');
- columnSpanBlock.setAttribute('id', 'columnSpanBlock');
- divBlock.appendChild(columnSpanBlock);
- span = document.createElement('span');
- divBlock.appendChild(span);
- span.appendChild(document.createTextNode('A'));
- table = document.createElement('table');
- table.setAttribute('id', 'table');
- divBlock.appendChild(table);
- document.designMode = 'on';
- document.execCommand('selectall');
- document.execCommand('inserttext', '');
- document.body.offsetTop;
- document.body.innerHTML = "PASS. WebKit didn't crash.";
-}
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698