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

Unified Diff: third_party/WebKit/LayoutTests/fast/inspector-support/cssURLQuotes.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/inspector-support/cssURLQuotes.html
diff --git a/third_party/WebKit/LayoutTests/fast/inspector-support/cssURLQuotes.html b/third_party/WebKit/LayoutTests/fast/inspector-support/cssURLQuotes.html
index 5b3dfb299454fe6d0325f8a7a245435dabf18405..350a517906898d98c290ced5fb5bc18ac033c206 100644
--- a/third_party/WebKit/LayoutTests/fast/inspector-support/cssURLQuotes.html
+++ b/third_party/WebKit/LayoutTests/fast/inspector-support/cssURLQuotes.html
@@ -1,13 +1,13 @@
-<div id="testUnquoted" style="background-image: url(file:///unquoted)"></div>
-<div id="testNoQuotesNeeded" style="background-image: url('file:///noQuotesNeeded')"></div>
-<div id="testShouldQuote" style="background-image: url('file:///should(Quote)')"></div>
+<div id="testQuoted1" style="background-image: url(file:///unquoted)"></div>
+<div id="testQuoted2" style="background-image: url('file:///quoted')"></div>
+<div id="testQuoted3" style="background-image: url('file:///should(Quote)')"></div>
<script>
function test(id, reason) {
alert(document.getElementById(id).style.getPropertyValue("background-image") + " (" + reason + ")");
}
if (window.testRunner)
testRunner.dumpAsText();
-test("testUnquoted", "URL should not be quoted");
-test("testNoQuotesNeeded", "URL should not be quoted");
-test("testShouldQuote", "URL should be quoted");
+test("testQuoted1", "URL should be quoted");
+test("testQuoted2", "URL should be quoted");
+test("testQuoted3", "URL should be quoted");
</script>

Powered by Google App Engine
This is Rietveld 408576698