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

Unified Diff: third_party/WebKit/LayoutTests/css-parser/resources/css-parsing-tests/color3.json

Issue 1936913002: [CSS] Accept 8 (#RRGGBBAA) and 4 (#RGBA) value hex colors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add quirks mode fastParseColorInternal() test cases. Created 4 years, 7 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/css-parser/resources/css-parsing-tests/color3.json
diff --git a/third_party/WebKit/LayoutTests/css-parser/resources/css-parsing-tests/color3.json b/third_party/WebKit/LayoutTests/css-parser/resources/css-parsing-tests/color3.json
index ac682bcd37ca3af03280a1d1e13c2ab7a9c26249..bad5079ec1cb50b495c678a5eda4a34ff7f1b53b 100644
--- a/third_party/WebKit/LayoutTests/css-parser/resources/css-parsing-tests/color3.json
+++ b/third_party/WebKit/LayoutTests/css-parser/resources/css-parsing-tests/color3.json
@@ -22,12 +22,14 @@
"#ff", null,
"#fff", [1, 1, 1, 1],
"#ffg", null,
-"#ffff", null,
+"#ffff", [1, 1, 1, 1],
+"#fffg", null,
"#fffff", null,
"#ffffff", [1, 1, 1, 1],
"#fffffg", null,
"#fffffff", null,
-"#ffffffff", null,
+"#ffffffff", [1, 1, 1, 1],
+"#fffffffg", null,
"#fffffffff", null,
"#FFCc99", [1, 0.8, 0.6, 1],
« no previous file with comments | « third_party/WebKit/LayoutTests/css-parser/color3-expected.txt ('k') | third_party/WebKit/LayoutTests/fast/css/hex-colors.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698