Index: LayoutTests/fast/backgrounds/background-position-x-origin.html |
diff --git a/LayoutTests/fast/backgrounds/background-position-x-origin.html b/LayoutTests/fast/backgrounds/background-position-x-origin.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c3cc3f6f2978ec33af4dde9a7bd795b04c1c64ca |
--- /dev/null |
+++ b/LayoutTests/fast/backgrounds/background-position-x-origin.html |
@@ -0,0 +1,35 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>background-position-x: initial on top of 4-value background-position</title> |
+ <style> |
+body { margin: 0 } |
+.test1 { |
+ height: 200px; |
+ width: 200px; |
+ background-image: |
+ url(../../css3/images/resources/red-100.png); |
+ background-repeat: no-repeat; |
+ |
+ /* Intended to be overwritten: */ |
+ background-position: bottom 0% right 0px; |
+} |
+.test2 { |
+ /* The background-position to be used: */ |
+ background-position-x: initial; |
+} |
+.ref { |
+ height: 100px; |
+ width: 100px; |
+ top: 100px; |
+ left: 0; |
+ background-color: green; |
+ position: absolute; |
+} |
+ </style> |
+ </head> |
+ <body> |
+ <div class="test1 test2"></div> |
+ <div class="ref"></div> |
+ </body> |
+</html> |