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

Unified Diff: LayoutTests/fast/regions/region-styling/region-style-in-columns.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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/regions/region-styling/region-style-in-columns.html
diff --git a/LayoutTests/fast/regions/region-styling/region-style-in-columns.html b/LayoutTests/fast/regions/region-styling/region-style-in-columns.html
deleted file mode 100644
index e2e02ed080c0eb1dfba5adecd490476d090793aa..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/region-styling/region-style-in-columns.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!doctype html>
-<html>
- <!--
- Test for https://bugs.webkit.org/show_bug.cgi?id=85633 ([CSSRegions]Add region styling support for color property) combined with the fact that
- the content is inside columns.
- You should not see any red text below.
- -->
- <head>
- <script>
- internals.settings.setRegionBasedColumnsEnabled(true)
- </script>
-
- <style>
- .regionBox { width: 350px; height: 25px; }
- .regionBox2 { width: 350px; height: 50px; }
-
- #article1 { -webkit-flow-into: flow1; width:600px;}
- #region1 { -webkit-flow-from: flow1; position: absolute; top: 10px; }
- #p1 { color: #ff0000; -webkit-column-count:2; column-count:2; column-fill:auto; height:30px}
- @-webkit-region #region1 {
- #p1 { color: #008000; }
- }
- </style>
- </head>
- <body>
- <div id="article1">
- <p id="p1">P color styled in region: #008000.</p>
- </div>
- <div id="region1" class="regionBox"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698