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

Unified Diff: LayoutTests/fast/multicol/scrolling-column-rules.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/scrolling-column-rules.html
diff --git a/LayoutTests/fast/multicol/scrolling-column-rules.html b/LayoutTests/fast/multicol/scrolling-column-rules.html
deleted file mode 100644
index b02f497a733fe32253c2b36a8c68ff29a0e1c2f9..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/scrolling-column-rules.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Column rule in scrollable multicol container</title>
- <style>
- body {
- margin: 0;
- }
- .mc {
- columns: 2;
- column-gap: 110px;
- column-rule: 100px solid;
- -moz-columns: 2;
- -moz-column-gap: 110px;
- -moz-column-rule: 100px solid;
- -webkit-columns: 2;
- -webkit-column-gap: 110px;
- -webkit-column-rule: 100px solid;
- orphans: 1;
- widows: 1;
- height: 100px;
- overflow: hidden;
- }
- </style>
- <script>
- if (window.testRunner)
- testRunner.waitUntilDone();
- function foo() {
- document.getElementById('elm').scrollLeft = 200;
- if (window.testRunner)
- testRunner.notifyDone();
- }
- </script>
- </head>
- <body onload="foo()">
- <p>There should be <b>two</b> black squares below.</p>
- <div id="elm" class="mc">
- <div style="height:600px;"></div>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698