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

Unified Diff: LayoutTests/fast/regions/region-styling/region-style-inline-background-color-expected.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-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>

Powered by Google App Engine
This is Rietveld 408576698