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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-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/cursor-parsing-image-set-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-expected.txt b/third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-expected.txt
index 1e58f3c2e4917682a7cad9f6195d55adf4b333df..db776212df30fdaf6e27655118a2050f150010a9 100644
--- a/third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-expected.txt
@@ -1,4 +1,4 @@
-Test the parsing of the cursor property when used with -webkit-image-set.
+Test the parsing of the cursor property when used with image-set.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
@@ -6,10 +6,10 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
Bug 99493
Test a bunch of cursor rules which should round-trip exactly.
-PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo.png") 1x), auto;`) is "cursor: -webkit-image-set(url(\"file:///foo.png\") 1x), auto;"
-PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo.png") 1x, url("file:///foo2x.png") 2x), auto;`) is "cursor: -webkit-image-set(url(\"file:///foo.png\") 1x, url(\"file:///foo2x.png\") 2x), auto;"
-PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo.png") 1x, url("file:///foo2x.png") 2x) 2 3, auto;`) is "cursor: -webkit-image-set(url(\"file:///foo.png\") 1x, url(\"file:///foo2x.png\") 2x) 2 3, auto;"
-PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo03.png") 0.3x, url("file:///foo5x.png") 5x) 6 5, url("file:///foo.png") 12 3, pointer;`) is "cursor: -webkit-image-set(url(\"file:///foo03.png\") 0.3x, url(\"file:///foo5x.png\") 5x) 6 5, url(\"file:///foo.png\") 12 3, pointer;"
+PASS roundtripCssRule(`cursor: image-set(url("file:///foo.png") 1x), auto;`) is "cursor: image-set(url(\"file:///foo.png\") 1x), auto;"
+PASS roundtripCssRule(`cursor: image-set(url("file:///foo.png") 1x, url("file:///foo2x.png") 2x), auto;`) is "cursor: image-set(url(\"file:///foo.png\") 1x, url(\"file:///foo2x.png\") 2x), auto;"
+PASS roundtripCssRule(`cursor: image-set(url("file:///foo.png") 1x, url("file:///foo2x.png") 2x) 2 3, auto;`) is "cursor: image-set(url(\"file:///foo.png\") 1x, url(\"file:///foo2x.png\") 2x) 2 3, auto;"
+PASS roundtripCssRule(`cursor: image-set(url("file:///foo03.png") 0.3x, url("file:///foo5x.png") 5x) 6 5, url("file:///foo.png") 12 3, pointer;`) is "cursor: image-set(url(\"file:///foo03.png\") 0.3x, url(\"file:///foo5x.png\") 5x) 6 5, url(\"file:///foo.png\") 12 3, pointer;"
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698