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

Unified Diff: LayoutTests/fast/css/background-position-inherit.html

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/background-position-inherit.html
diff --git a/LayoutTests/fast/css/background-position-inherit.html b/LayoutTests/fast/css/background-position-inherit.html
index aa442c41d07b2de84878681ff852493d73e071bd..a468e02f60c510944c204133b2ae2e5bff0f8ab9 100644
--- a/LayoutTests/fast/css/background-position-inherit.html
+++ b/LayoutTests/fast/css/background-position-inherit.html
@@ -12,5 +12,5 @@
var targetBackgroundPosition = getComputedStyle(document.getElementById("target")).backgroundPosition,cssText;
- document.getElementById("result").innerText = targetBackgroundPosition == "25% 75%" ? "PASS" : "FAIL: The inherited value was " + targetBackgroundPosition;
+ document.getElementById("result").innerText = targetBackgroundPosition == "left 25% top 75%" ? "PASS" : "FAIL: The inherited value was " + targetBackgroundPosition;
</script>

Powered by Google App Engine
This is Rietveld 408576698