Index: LayoutTests/fast/regions/region-styling/region-style-inline-background-color.html |
diff --git a/LayoutTests/fast/regions/region-styling/region-style-inline-background-color.html b/LayoutTests/fast/regions/region-styling/region-style-inline-background-color.html |
deleted file mode 100644 |
index 6c4da0b9646a1c3c2331860619d54a8d8c1af906..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/region-styling/region-style-inline-background-color.html |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-<!doctype html> |
-<html> |
- <!-- |
- Test for https://bugs.webkit.org/show_bug.cgi?id=71488 (Add support for background-color in region styling). |
- Setting the background color is enabled for inline elements. |
- You should not see any red background below. |
- --> |
- <head> |
- <style> |
- @font-face { |
- font-family: webkit-ahem; |
- font-style: normal; |
- src: url(../../../resources/Ahem.ttf); |
- } |
- |
- .regionBox { width: 300px; height: 50px; } |
- span { font-family: webkit-ahem; -webkit-font-smoothing: none; } |
- |
- #article1 { -webkit-flow-into: flow1; } |
- #region1 { -webkit-flow-from: flow1; position: absolute; top: 10px; } |
- #span1 { background-color: red; } |
- @-webkit-region #region1 { #span1 { background-color: green; } } |
- #article2 { -webkit-flow-into: flow2; } |
- #region2 { -webkit-flow-from: flow2; position: absolute; top: 70px; } |
- #span2 { display: block; background-color: red; } |
- @-webkit-region #region2 { #span2 { background-color: green; } } |
- </style> |
- </head> |
- <body> |
- <div id="article1"> |
- <span id="span1">R: 00 G: 80 B: 00</span> |
- </div> |
- <div id="region1" class="regionBox"></div> |
- <div id="article2"> |
- <span id="span2">R: 00 G: 80 B: 00</span> |
- </div> |
- <div id="region2" class="regionBox"></div> |
- <script> |
- document.getElementById("span2").style.display = "inline"; |
- </script> |
- </body> |
-</html> |