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

Unified Diff: third_party/WebKit/LayoutTests/css-parser/color3-expected.txt

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/color3-expected.txt
diff --git a/third_party/WebKit/LayoutTests/css-parser/color3-expected.txt b/third_party/WebKit/LayoutTests/css-parser/color3-expected.txt
index a4236d36bd3423b01610a2039444362bf42d8d03..a0b82e08da7858b9f8f6374b0d09136011d5636c 100644
--- a/third_party/WebKit/LayoutTests/css-parser/color3-expected.txt
+++ b/third_party/WebKit/LayoutTests/css-parser/color3-expected.txt
@@ -25,12 +25,14 @@ PASS colorTest.parseColor("#f") is "parse error"
PASS colorTest.parseColor("#ff") is "parse error"
PASS colorTest.parseColor("#fff") is "rgb(255, 255, 255)"
PASS colorTest.parseColor("#ffg") is "parse error"
-PASS colorTest.parseColor("#ffff") is "parse error"
+PASS colorTest.parseColor("#ffff") is "rgb(255, 255, 255)"
+PASS colorTest.parseColor("#fffg") is "parse error"
PASS colorTest.parseColor("#fffff") is "parse error"
PASS colorTest.parseColor("#ffffff") is "rgb(255, 255, 255)"
PASS colorTest.parseColor("#fffffg") is "parse error"
PASS colorTest.parseColor("#fffffff") is "parse error"
-PASS colorTest.parseColor("#ffffffff") is "parse error"
+PASS colorTest.parseColor("#ffffffff") is "rgb(255, 255, 255)"
+PASS colorTest.parseColor("#fffffffg") is "parse error"
PASS colorTest.parseColor("#fffffffff") is "parse error"
PASS colorTest.parseColor("#FFCc99") is "rgb(255, 204, 153)"
PASS colorTest.parseColor("#369") is "rgb(51, 102, 153)"

Powered by Google App Engine
This is Rietveld 408576698