| 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("#');
|
|
|