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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/script-tests/image-set-parsing.js

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/script-tests/image-set-parsing.js
diff --git a/third_party/WebKit/LayoutTests/fast/css/script-tests/image-set-parsing.js b/third_party/WebKit/LayoutTests/fast/css/script-tests/image-set-parsing.js
index b3047bba44dac1ad84219f5ce50c5f7faa32757c..751a75d3754b2bec7c34db3535d55ce650382c4e 100644
--- a/third_party/WebKit/LayoutTests/fast/css/script-tests/image-set-parsing.js
+++ b/third_party/WebKit/LayoutTests/fast/css/script-tests/image-set-parsing.js
@@ -1,4 +1,4 @@
-description("Test the parsing of the -webkit-image-set function.");
+description("Test the parsing of the image-set function.");
var result;
@@ -8,7 +8,7 @@ function testImageSetRule(description, property, rule, expectedTexts)
debug(description + " : " + rule);
var div = document.createElement("div");
- rule = "-webkit-image-set(" + rule + ")";
+ rule = "image-set(" + rule + ")";
div.style[property] = rule;
document.body.appendChild(div);
result = div.style[property].replace(/url\("[^#]*#/g, 'url("#');

Powered by Google App Engine
This is Rietveld 408576698