Index: LayoutTests/fast/regions/webkit-background-clip-text.html |
diff --git a/LayoutTests/fast/regions/webkit-background-clip-text.html b/LayoutTests/fast/regions/webkit-background-clip-text.html |
deleted file mode 100644 |
index 72e7bb281e89527c9208fa45dce926a52540fcd0..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/webkit-background-clip-text.html |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <style> |
- #content-for-regions { |
- -webkit-flow-into: flow; |
- |
- color: transparent; |
- font-size: 100px; |
- font-family: Ahem; |
- } |
- .region { |
- -webkit-flow-from: flow; |
- -webkit-background-clip: text; |
- |
- width: 400px; |
- height: 100px; |
- border: 1px solid black; |
- } |
- #region-1 { |
- background-color: green; |
- } |
- #region-2 { |
- background-color: blue; |
- margin-top: 10px; |
- } |
- </style> |
-</head> |
-<body> |
- <p>This test verifies that -webkit-background-clip: text applies correctly in regions.</p> |
- <p>This test passes if there are two regions, with the following appearance:</p> |
- <ul> |
- <li>Each region has black border.</li> |
- <li>Each region contains two square characters, separated by a space.</li> |
- <li>The first region's square characters are green because they clip the region's green background.</li> |
- <li>The second region's square characters are blue because they clip the region's blue background.</li> |
- </ul> |
- <div id="content-for-regions">x x x x</div> |
- <div id="region-1" class="region"></div> |
- <div id="region-2" class="region"></div> |
-</body> |
-</html> |