Index: LayoutTests/fast/regions/region-styling/region-style-inline-background-color-expected.html |
diff --git a/LayoutTests/fast/regions/region-styling/region-style-inline-background-color-expected.html b/LayoutTests/fast/regions/region-styling/region-style-inline-background-color-expected.html |
deleted file mode 100644 |
index 8cdf29650f314d4d5662e919732a9564514a222f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/region-styling/region-style-inline-background-color-expected.html |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-<!doctype html> |
-<html> |
- <!-- |
- Ref test for https://bugs.webkit.org/show_bug.cgi?id=71488 (Add support for background-color in region styling). |
- Setting the background color is not 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 { position: absolute; top: 10px; } |
- #span1 { background-color: green; } |
- @-webkit-region #region1 { #span1 { background-color: red; } } |
- |
- #article2 { position: absolute; top: 70px; } |
- #span2 { display: block; background-color: green; } |
- @-webkit-region #region2 { #span2 { background-color: red; } } |
- </style> |
- </head> |
- <body> |
- <div id="article1" class="regionBox"> |
- <span id="span1">R: 00 G: 80 B: 00</span> |
- </div> |
- |
- <div id="article2" class="regionBox"> |
- <span id="span2">R: 00 G: 80 B: 00</span> |
- </div> |
- <script> |
- document.getElementById("span2").style.display = "inline"; |
- </script> |
- </body> |
-</html> |