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

Unified Diff: LayoutTests/fast/multicol/break-after-always-bottom-margin.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/break-after-always-bottom-margin.html
diff --git a/LayoutTests/fast/multicol/break-after-always-bottom-margin.html b/LayoutTests/fast/multicol/break-after-always-bottom-margin.html
deleted file mode 100644
index b8b2111e305bbf3957f99ca8101286ab73115386..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/multicol/break-after-always-bottom-margin.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <title>Bug 92497 - [CSS Regions] Region overset property is not properly computed when there is a region break</title>
- <style type="text/css">
-
- .columns {
- -webkit-column-count:2;
- width:250px;
- }
-
- .columns p:first-child {
- -webkit-column-break-after: always;
- margin-bottom: 10em; /*shouldn't spill over the forced break*/
- }
-
- .fail #pass, .pass #fail { display: none; }
- </style>
- </head>
-
- <body>
- <div class="columns">
- <p>This is some text with bottom margin and forced break after.</p>
- <p>This paragraph should be aligned with the other paragraph because the 1st paragraph's bottom margin shouldn't spill over the forced break.</p>
- </div>
-
- <script type="text/javascript">
- if(window.testRunner)
- testRunner.dumpAsText();
- document.body.className = document.querySelector(".columns p:nth-child(2)").offsetTop == document.querySelector(".columns p:first-child").offsetTop ? "pass" : "fail";
- </script>
-
- <div id="pass">PASS</div>
- <div id="fail">FAIL</div>
-
- <p><a href="https://bugs.webkit.org/show_bug.cgi?id=92497">Bug 92497</a> - [CSS Regions] Region overset property is not properly computed when there is a region break</p>
-
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698