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

Unified Diff: third_party/WebKit/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.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/innerHTML/innerHTML-uri-resolution.html
diff --git a/third_party/WebKit/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.html b/third_party/WebKit/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.html
index 262ade4ff73e7a1cd389c7475b6d4ba3355db4e9..9650d202d9876b43fab4bc83a509963fa9ebf7cc 100644
--- a/third_party/WebKit/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.html
+++ b/third_party/WebKit/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.html
@@ -13,7 +13,7 @@
var currentUri = document.location.href;
var currentPath = currentUri.substring(0, currentUri.lastIndexOf('/'));
- var cssUriWasResolvedAgainstDocumentUri = document.getElementById("test-span").style.backgroundImage == 'url(image.png)';
+ var cssUriWasResolvedAgainstDocumentUri = document.getElementById("test-span").style.backgroundImage == 'url("image.png")';
// Can't log the actual path since it's different depending on where the test is run.
shouldBeTrue('cssUriWasResolvedAgainstDocumentUri');

Powered by Google App Engine
This is Rietveld 408576698