File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -551,6 +551,7 @@ test "Browser: CSS.StyleDeclaration: isNumericWithUnit - edge cases and invalid
551551
552552test "Browser: CSS.StyleDeclaration: isHexColor - valid hex colors" {
553553 try testing .expect (isHexColor ("#000" ));
554+ try testing .expect (isHexColor ("#0000" ));
554555 try testing .expect (isHexColor ("#fff" ));
555556 try testing .expect (isHexColor ("#123456" ));
556557 try testing .expect (isHexColor ("#abcdef" ));
@@ -563,7 +564,6 @@ test "Browser: CSS.StyleDeclaration: isHexColor - invalid hex colors" {
563564 try testing .expect (! isHexColor ("#" ));
564565 try testing .expect (! isHexColor ("000" ));
565566 try testing .expect (! isHexColor ("#00" ));
566- try testing .expect (! isHexColor ("#0000" ));
567567 try testing .expect (! isHexColor ("#00000" ));
568568 try testing .expect (! isHexColor ("#0000000" ));
569569 try testing .expect (! isHexColor ("#000000000" ));
You can’t perform that action at this time.
0 commit comments