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

Unified Diff: LayoutTests/fast/multicol/span/clone-before-after-content-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/clone-before-after-content-crash.html
diff --git a/LayoutTests/fast/multicol/span/clone-before-after-content-crash.html b/LayoutTests/fast/multicol/span/clone-before-after-content-crash.html
deleted file mode 100644
index 962e8645f92d8ebf4c2a758c65635345257b97de..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/span/clone-before-after-content-crash.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<html>
- <head>
- <style>
- #test1 { -webkit-column-count: 1; }
- #test2 { display: block; }
- #test3::after { display: block; content: "A"; }
- #test4 { -webkit-column-span: all; }
- </style>
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
- function runTest(){
- test1 = document.createElement('div');
- test1.setAttribute('id', 'test1');
- document.body.appendChild(test1);
- test2 = document.createElement('div');
- test2.setAttribute('id', 'test2');
- test1.appendChild(test2);
- test3 = document.createElement('div');
- test3.setAttribute('id', 'test3');
- test2.appendChild(test3);
- test4 = document.createElement('span');
- test4.setAttribute('id', 'test4');
- test3.appendChild(test4);
- document.body.offsetTop;
- test4.style.display='block';
- }
- window.onload = runTest
- </script>
- </head>
- <body>
- Test passes if it does not crash.
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698