Index: third_party/WebKit/LayoutTests/fast/backgrounds/background-tiling-sub-pixel-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/backgrounds/background-tiling-sub-pixel-expected.html b/third_party/WebKit/LayoutTests/fast/backgrounds/background-tiling-sub-pixel-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..44ea4175cc419891bf1b41004665c0004393b422 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/backgrounds/background-tiling-sub-pixel-expected.html |
@@ -0,0 +1,24 @@ |
+<!DOCTYPE html> |
+<style> |
+ div { |
+ background-image: -webkit-repeating-linear-gradient(top left, white, blue 90px); |
+ background-origin: content-box; |
+ } |
+ |
+ #a { |
+ width: 100px; |
+ height: 100px; |
+ } |
+ |
+ #b { |
+ border: 1px solid black; |
+ width: 98px; |
+ height: 98px; |
+ } |
+</style> |
+ |
+<div id=a></div> |
+<div id=b></div> |
+ |
+The gradients should fill the entire boxes and not repeat. |
+ |