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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/parsing-css-string-characters.html

Issue 1778743003: Make <custom-ident> not insert quotes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win_chromium_rel_ng Created 4 years, 9 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/css/parsing-css-string-characters.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/parsing-css-string-characters.html b/third_party/WebKit/LayoutTests/fast/css/parsing-css-string-characters.html
index e6dd0c2b3d6f174d56cbafb3cb6fffc122eb790d..e77ff9cdfefc06a117cb973a9665b1e5998414a1 100644
--- a/third_party/WebKit/LayoutTests/fast/css/parsing-css-string-characters.html
+++ b/third_party/WebKit/LayoutTests/fast/css/parsing-css-string-characters.html
@@ -3,20 +3,20 @@
<script src="../../resources/testharnessreport.js"></script>
<script src="../../css-parser/resources/property-parsing-test.js"></script>
<script>
-assert_valid_value("font-family", "'65: A 9: \t'", "'65: A 9: \\9'");
-assert_valid_value("font-family", "'128: \u0080 159: \u009f'");
-assert_valid_value("font-family", "'1: \x01'", "'1: \\1'");
-assert_valid_value("font-family", "'8: \x08'", "'8: \\8'");
-assert_valid_value("font-family", "'9: \t'", "'9: \\9'");
-assert_valid_value("font-family", "'11: \x0b'", "'11: \\b'");
-assert_valid_value("font-family", "'14: \x0e'", "'14: \\e'");
-assert_valid_value("font-family", "'20: \x14'", "'20: \\14'");
-assert_valid_value("font-family", "'30: \x1e", "'30: \\1e'");
-assert_valid_value("font-family", "'31: \x1f'", "'31: \\1f'");
-assert_valid_value("font-family", "'127: \x7f'", "'127: \\7f'");
-assert_valid_value("font-family", "'384: \u0180'");
+assert_valid_value("font-family", '"65: A 9: \t"', '"65: A 9: \\9 "');
+assert_valid_value("font-family", '"128: \u0080 159: \u009f"');
+assert_valid_value("font-family", '"1: \x01"', '"1: \\1 "');
+assert_valid_value("font-family", '"8: \x08"', '"8: \\8 "');
+assert_valid_value("font-family", '"9: \t"', '"9: \\9 "');
+assert_valid_value("font-family", '"11: \x0b"', '"11: \\b "');
+assert_valid_value("font-family", '"14: \x0e"', '"14: \\e "');
+assert_valid_value("font-family", '"20: \x14"', '"20: \\14 "');
+assert_valid_value("font-family", '"30: \x1e"', '"30: \\1e "');
+assert_valid_value("font-family", '"31: \x1f"', '"31: \\1f "');
+assert_valid_value("font-family", '"127: \x7f"', '"127: \\7f "');
+assert_valid_value("font-family", '"384: \u0180"');
-assert_invalid_value("font-family", "'10: \n'");
-assert_invalid_value("font-family", "'12: \f'");
-assert_invalid_value("font-family", "'13: \r'");
+assert_invalid_value("font-family", '"10: \n"');
+assert_invalid_value("font-family", '"12: \f"');
+assert_invalid_value("font-family", '"13: \r"');
</script>

Powered by Google App Engine
This is Rietveld 408576698