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

Unified Diff: third_party/WebKit/LayoutTests/fast/masking/parsing-clip-path-iri.html

Issue 1363233003: Make sure <url>s are being serialized according to spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix interpolation tests Created 5 years, 3 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/masking/parsing-clip-path-iri.html
diff --git a/third_party/WebKit/LayoutTests/fast/masking/parsing-clip-path-iri.html b/third_party/WebKit/LayoutTests/fast/masking/parsing-clip-path-iri.html
index 6afc5de64461a022708250ddfc42cce34e4cf8a3..d1e289fba397dd7250eb1da2880fae29016aa549 100644
--- a/third_party/WebKit/LayoutTests/fast/masking/parsing-clip-path-iri.html
+++ b/third_party/WebKit/LayoutTests/fast/masking/parsing-clip-path-iri.html
@@ -35,11 +35,11 @@ function testInner(property, value, expected) {
shouldBeEqualToString('innerStyle("' + property + '", "' + value + '")', expected);
}
-testInner("-webkit-clip-path", "url(#clip1)", "url(#clip1)");
-testInner("-webkit-clip-path", "url(clip.svg#clip1)", "url(clip.svg#clip1)");
+testInner("-webkit-clip-path", "url(#clip1)", 'url("#clip1")');
+testInner("-webkit-clip-path", "url(clip.svg#clip1)", 'url("clip.svg#clip1")');
-testComputed("-webkit-clip-path", "url(#clip1)", "url(#clip1)");
-testComputed("-webkit-clip-path", "url(clip.svg#clip1)", "url(clip.svg#clip1)");
+testComputed("-webkit-clip-path", "url(#clip1)", 'url("#clip1")');
+testComputed("-webkit-clip-path", "url(clip.svg#clip1)", 'url("clip.svg#clip1")');
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698