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

Unified Diff: LayoutTests/http/tests/misc/extract-http-content-language-multiple.php

Issue 973623002: Fix serialization of content property to always quote (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add another method Created 5 years, 10 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: LayoutTests/http/tests/misc/extract-http-content-language-multiple.php
diff --git a/LayoutTests/http/tests/misc/extract-http-content-language-multiple.php b/LayoutTests/http/tests/misc/extract-http-content-language-multiple.php
index 622d280c428be7c4382b89aacf755993d325ca55..4e5739cff2ebbd9b99a2b64716f3bae79eb7502c 100644
--- a/LayoutTests/http/tests/misc/extract-http-content-language-multiple.php
+++ b/LayoutTests/http/tests/misc/extract-http-content-language-multiple.php
@@ -14,9 +14,9 @@ Extract HTTP Content-Language header.</p>
<div id="y" lang="ar"></div>
<script>
debug('==> Value extracted singly from HTTP "Content-Language" header...');
- shouldBe('window.getComputedStyle(document.getElementById("x")).webkitLocale', '"fr"')
+ shouldBe('window.getComputedStyle(document.getElementById("x")).webkitLocale', '"\'fr\'"')
debug('==> Value set by div "lang" tag...');
- shouldBe('window.getComputedStyle(document.getElementById("y")).webkitLocale', '"ar"')
+ shouldBe('window.getComputedStyle(document.getElementById("y")).webkitLocale', '"\'ar\'"')
debug('==> All done...');
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698