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

Unified Diff: LayoutTests/fast/regions/region-styling/region-style-image-background-color.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-image-background-color.html
diff --git a/LayoutTests/fast/regions/region-styling/region-style-image-background-color.html b/LayoutTests/fast/regions/region-styling/region-style-image-background-color.html
deleted file mode 100644
index 761964115df2d9a4224d9bdaa9b57807d3c209f5..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/region-styling/region-style-image-background-color.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!doctype html>
-<html>
- <!--
- Test for https://bugs.webkit.org/show_bug.cgi?id=71488 (Add support for background-color in region styling).
- You should not see any red background below.
- -->
- <head>
- <style>
- @font-face {
- font-family: webkit-ahem;
- font-style: normal;
- src: url(../../../resources/Ahem.ttf);
- }
-
- p { background-color: red; font-family: webkit-ahem; }
- img { background-color: red}
- .regionBox2 { width: 300px; height: 100px; }
-
- #article { -webkit-flow-into: flow; }
- #region { -webkit-flow-from: flow; position: absolute; top: 10px; }
- @-webkit-region #region {
- p { background-color: green; }
- img { background-color: green; }
- }
- </style>
- </head>
- <body>
- <div id="article">
- <!-- Green background text styled in region. -->
- <p>R: 00 G: 80 B: 00</p>
- <img src="resources/transparent.png">
- </div>
- <div id="region" class="regionBox2"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698