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

Unified Diff: LayoutTests/fast/backgrounds/size/resources/parsing-background-size-values.js

Issue 249803002: Preserve identical values for background-size and -webkit-mask-size. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove comment. Created 6 years, 8 months 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/backgrounds/size/resources/parsing-background-size-values.js
diff --git a/LayoutTests/fast/backgrounds/size/resources/parsing-background-size-values.js b/LayoutTests/fast/backgrounds/size/resources/parsing-background-size-values.js
index afec3e4446b550d55d52b6b3f622a2b5e6ec21bd..df9ba63b0c39e7d17c0469189b06e7928fcd7516 100644
--- a/LayoutTests/fast/backgrounds/size/resources/parsing-background-size-values.js
+++ b/LayoutTests/fast/backgrounds/size/resources/parsing-background-size-values.js
@@ -13,8 +13,8 @@ function test(value)
shouldBe('test("background-size: contain;")', '"contain"');
shouldBe('test("background-size: cover;")', '"cover"');
-shouldBe('test("background-size: 100 100;")', '"100px"');
-shouldBe('test("background-size: 100px 100px;")', '"100px"');
+shouldBe('test("background-size: 100 100;")', '"100px 100px"');
+shouldBe('test("background-size: 100px 100px;")', '"100px 100px"');
shouldBe('test("background-size: auto 50px;")', '"auto 50px"');
shouldBe('test("background-size: 50px auto;")', '"50px"');
shouldBe('test("background-size: auto auto;")', '"auto"');

Powered by Google App Engine
This is Rietveld 408576698