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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/image-set-parsing-expected.txt

Issue 2203773002: Add support for "image-set" Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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: third_party/WebKit/LayoutTests/fast/css/image-set-parsing-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/css/image-set-parsing-expected.txt b/third_party/WebKit/LayoutTests/fast/css/image-set-parsing-expected.txt
index 857047583fa80f670cac627c42749b9939bbb794..5a30f478d9f26ce8b5668314ba8298c64739f472 100644
--- a/third_party/WebKit/LayoutTests/fast/css/image-set-parsing-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/css/image-set-parsing-expected.txt
@@ -1,35 +1,35 @@
-Test the parsing of the -webkit-image-set function.
+Test the parsing of the image-set function.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Single value for background-image : url("#a") 1x
-PASS result is "-webkit-image-set(url(\"#a\") 1x)"
+PASS result is "image-set(url(\"#a\") 1x)"
Multiple values for background-image : url("#a") 1x, url("#b") 2x
-PASS result is "-webkit-image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
+PASS result is "image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
Multiple values for background-image, out of order : url("#c") 3x, url("#b") 2x, url("#a") 1x
-PASS result is "-webkit-image-set(url(\"#c\") 3x, url(\"#b\") 2x, url(\"#a\") 1x)"
+PASS result is "image-set(url(\"#c\") 3x, url(\"#b\") 2x, url(\"#a\") 1x)"
Single value for content : url("#a") 1x
-PASS result is "-webkit-image-set(url(\"#a\") 1x)"
+PASS result is "image-set(url(\"#a\") 1x)"
Multiple values for content : url("#a") 1x, url("#b") 2x
-PASS result is "-webkit-image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
+PASS result is "image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
Single value for border-image : url("#a") 1x
-PASS result is "-webkit-image-set(url(\"#a\") 1x)"
+PASS result is "image-set(url(\"#a\") 1x)"
Multiple values for border-image : url("#a") 1x, url("#b") 2x
-PASS result is "-webkit-image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
+PASS result is "image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
Single value for -webkit-mask-box-image-source : url("#a") 1x
-PASS result is "-webkit-image-set(url(\"#a\") 1x)"
+PASS result is "image-set(url(\"#a\") 1x)"
Multiple values for -webkit-mask-box-image-source : url("#a") 1x, url("#b") 2x
-PASS result is "-webkit-image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
+PASS result is "image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698