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

Unified Diff: LayoutTests/fast/css/getComputedStyle/getComputedStyle-background-position-expected.txt

Issue 38573003: Use 4 value syntax for getComputedStyle of background-position and -webkit-mask-position (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 1 month 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/css/getComputedStyle/getComputedStyle-background-position-expected.txt
diff --git a/LayoutTests/fast/css/getComputedStyle/getComputedStyle-background-position-expected.txt b/LayoutTests/fast/css/getComputedStyle/getComputedStyle-background-position-expected.txt
index 2a10c45ee87d37f08ea00412872af1b4f97815b0..7bd5f936e632d132baed639b292f82cfc69ddb94 100644
--- a/LayoutTests/fast/css/getComputedStyle/getComputedStyle-background-position-expected.txt
+++ b/LayoutTests/fast/css/getComputedStyle/getComputedStyle-background-position-expected.txt
@@ -2,7 +2,7 @@ Test calling getPropertyValue on computed styles for background-position propert
background-position: 0;
background-position
- getPropertyValue: 0px 50%
+ getPropertyValue: left 0px top 50%
getPropertyCSSValue: [object CSSValueList]
background-position-x
getPropertyValue: 0px
@@ -12,7 +12,7 @@ background-position: 0;
getPropertyCSSValue: [object CSSPrimitiveValue]
background-position: 0 0;
background-position
- getPropertyValue: 0px 0px
+ getPropertyValue: left 0px top 0px
getPropertyCSSValue: [object CSSValueList]
background-position-x
getPropertyValue: 0px
@@ -23,7 +23,7 @@ background-position: 0 0;
background-position: 15px;
background-position
- getPropertyValue: 15px 50%
+ getPropertyValue: left 15px top 50%
getPropertyCSSValue: [object CSSValueList]
background-position-x
getPropertyValue: 15px
@@ -33,7 +33,7 @@ background-position: 15px;
getPropertyCSSValue: [object CSSPrimitiveValue]
background-position: 10px 20px;
background-position
- getPropertyValue: 10px 20px
+ getPropertyValue: left 10px top 20px
getPropertyCSSValue: [object CSSValueList]
background-position-x
getPropertyValue: 10px
@@ -44,7 +44,7 @@ background-position: 10px 20px;
No background-position set
background-position
- getPropertyValue: 0% 0%
+ getPropertyValue: left 0% top 0%
getPropertyCSSValue: [object CSSValueList]
background-position-x
getPropertyValue: 0%

Powered by Google App Engine
This is Rietveld 408576698