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

Unified Diff: LayoutTests/fast/css/content-language-mapped-to-webkit-locale.html

Issue 1090423007: Serialize <string> with double quotes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 5 years, 8 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/fast/css/content-language-mapped-to-webkit-locale.html
diff --git a/LayoutTests/fast/css/content-language-mapped-to-webkit-locale.html b/LayoutTests/fast/css/content-language-mapped-to-webkit-locale.html
index cce7c95301e9f66065333a43587d66aafed19ade..ddff01192ef867877071a12bb81a3486221ab883 100644
--- a/LayoutTests/fast/css/content-language-mapped-to-webkit-locale.html
+++ b/LayoutTests/fast/css/content-language-mapped-to-webkit-locale.html
@@ -15,8 +15,8 @@ function languageOfNode(id) {
var element = document.getElementById(id);
return window.getComputedStyle(element).webkitLocale;
}
-shouldBeEqualToString("languageOfNode('x')", "'zh-CN'");
-shouldBeEqualToString("languageOfNode('y')", "'ar'");
+shouldBeEqualToString("languageOfNode('x')", '"zh-CN"');
+shouldBeEqualToString("languageOfNode('y')", '"ar"');
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698