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> |