Index: LayoutTests/fast/css/parsing-object-position.html |
diff --git a/LayoutTests/fast/css/parsing-object-position.html b/LayoutTests/fast/css/parsing-object-position.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e6d9c9c03488097bef9407f5a00a4ee240f4db02 |
--- /dev/null |
+++ b/LayoutTests/fast/css/parsing-object-position.html |
@@ -0,0 +1,80 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <script src="../js/resources/js-test-pre.js"></script> |
+ </head> |
+ <body> |
+ <script> |
+ description("This tests checks that all of the input values for object-position parse correctly."); |
+ |
+ function test(value) |
+ { |
+ var div = document.createElement("div"); |
+ div.setAttribute("style", value); |
+ document.body.appendChild(div); |
+ |
+ var result = div.style.getPropertyValue("object-position"); |
+ document.body.removeChild(div); |
+ return result; |
+ } |
+ |
+ function testComputedStyle(value) |
+ { |
+ var div = document.createElement("div"); |
+ div.setAttribute("style", value); |
+ document.body.appendChild(div); |
+ |
+ var result = window.getComputedStyle(div).objectPosition; |
+ document.body.removeChild(div); |
+ return result; |
+ } |
+ |
+ shouldBeEqualToString('testComputedStyle(";")', '50% 50%'); |
+ shouldBeEqualToString('testComputedStyle("object-position: 10px;")', '10px 50%'); |
+ shouldBeEqualToString('testComputedStyle("object-position: 10px 10px;")', '10px 10px'); |
+ shouldBeEqualToString('testComputedStyle("object-position: right top;")', '100% 0%'); |
+ shouldBeEqualToString('testComputedStyle("object-position: top right;")', '100% 0%'); |
+ |
+ shouldBeEqualToString('test("object-position: inherit;")', 'inherit'); |
+ shouldBeEqualToString('test("object-position: initial;")', 'initial'); |
+ shouldBeEqualToString('test("object-position: left;")', '0% 50%'); |
+ shouldBeEqualToString('test("object-position: top;")', '50% 0%'); |
+ shouldBeEqualToString('test("object-position: top right;")', '100% 0%'); |
+ shouldBeEqualToString('test("object-position: right top;")', '100% 0%'); |
+ shouldBeEqualToString('test("object-position: center center;")', '50% 50%'); |
+ shouldBeEqualToString('test("object-position: center;")', '50% 50%'); |
+ shouldBeEqualToString('test("object-position: bottom center;")', '50% 100%'); |
+ shouldBeEqualToString('test("object-position: left center;")', '0% 50%'); |
+ shouldBeEqualToString('test("object-position: bottom center;")', '50% 100%'); |
+ shouldBeEqualToString('test("object-position: center left;")', '0% 50%'); |
+ shouldBeEqualToString('test("object-position: center bottom;")', '50% 100%'); |
+ shouldBeEqualToString('test("object-position: 100px;")', '100px 50%'); |
+ shouldBeEqualToString('test("object-position: 100px 100px;")', '100px 100px'); |
+ shouldBeEqualToString('test("object-position: 100px 200px;")', '100px 200px'); |
+ shouldBeEqualToString('test("object-position: -50% 0;")', '-50% 0px'); |
+ shouldBeEqualToString('test("object-position: 3em 0;")', '3em 0px'); |
+ shouldBeEqualToString('test("object-position: left 33px;")', '0% 33px'); |
+ shouldBeEqualToString('test("object-position: center 33px;")', '50% 33px'); |
+ shouldBeEqualToString('test("object-position: 33px center;")', '33px 50%'); |
+ shouldBeEqualToString('test("object-position: 33px bottom;")', '33px 100%'); |
+ shouldBeEqualToString('test("object-position: 1vh 1vw;")', '1vh 1vw'); |
+ |
+ shouldBeNull('test("object-position: 100px 100px 100px;")'); |
+ shouldBeNull('test("object-position: 100px 100px 200px 200px;")'); |
+ shouldBeNull('test("object-position: top left center;")'); |
+ shouldBeNull('test("object-position: top top;")'); |
+ shouldBeNull('test("object-position: top bottom;")'); |
+ shouldBeNull('test("object-position: 33px left;")'); |
+ shouldBeNull('test("object-position: top 33px;")'); |
+ shouldBeNull('test("object-position: inherit inherit;")'); |
+ shouldBeNull('test("object-position: initial initial;")'); |
+ shouldBeNull('test("object-position: -webkit-fill-available;")'); |
+ shouldBeNull('test("object-position: min-content;")'); |
+ shouldBeNull('test("object-position: intrinsic;")'); |
+ shouldBeNull('test("object-position: auto;")'); |
+ shouldBeNull('test("object-position: none;")'); |
+ shouldBeNull('test("object-position: fill;")'); |
+ </script> |
+ <script src="../js/resources/js-test-post.js"></script> |
+ </body> |
+</html> |