@@ -293,7 +293,7 @@ Property forKey(String propertyName) {
293
293
ImmutableSet <String > mozOutlineLiterals3 = ImmutableSet .of (
294
294
"hidden" , "inherit" , "inset" , "invert" , "medium" , "none" );
295
295
ImmutableMap <String , String > mozOutlineFunctions =
296
- ImmutableMap .<String , String >of ("rgb(" , "rgb()" , "rgba(" , "rgba()" );
296
+ ImmutableMap .<String , String >of ("rgb(" , "rgb()" , "rgba(" , "rgba()" , "hsl(" , "hsl()" , "hsla(" , "hsla()" );
297
297
ImmutableSet <String > mozOutlineColorLiterals0 =
298
298
ImmutableSet .of ("inherit" , "invert" );
299
299
ImmutableSet <String > mozOutlineStyleLiterals0 =
@@ -323,7 +323,7 @@ Property forKey(String propertyName) {
323
323
.put ("radial-gradient(" , "radial-gradient()" )
324
324
.put ("repeating-linear-gradient(" , "repeating-linear-gradient()" )
325
325
.put ("repeating-radial-gradient(" , "repeating-radial-gradient()" )
326
- .put ("rgb(" , "rgb()" ).put ("rgba(" , "rgba()" )
326
+ .put ("rgb(" , "rgb()" ).put ("rgba(" , "rgba()" ). put ( "hsl(" , "hsl()" ). put ( "hsla(" , "hsla()" )
327
327
.build ();
328
328
ImmutableSet <String > backgroundAttachmentLiterals0 =
329
329
ImmutableSet .of ("," , "fixed" , "local" , "scroll" );
@@ -467,6 +467,8 @@ Property forKey(String propertyName) {
467
467
ImmutableSet <String > wordWrapLiterals0 = ImmutableSet .of (
468
468
"break-word" , "normal" );
469
469
ImmutableSet <String > rgb$FunLiterals0 = ImmutableSet .of ("," );
470
+
471
+
470
472
ImmutableSet <String > linearGradient$FunLiterals0 = ImmutableSet .of (
471
473
"," , "to" );
472
474
ImmutableSet <String > radialGradient$FunLiterals0 = ImmutableSet .of (
@@ -742,6 +744,9 @@ Property forKey(String propertyName) {
742
744
builder .put ("zoom" , new Property (1 , fontStretchLiterals1 , zeroFns ));
743
745
Property rgb$Fun = new Property (1 , rgb$FunLiterals0 , zeroFns );
744
746
builder .put ("rgb()" , rgb$Fun );
747
+
748
+ builder .put ("hsl()" , rgb$Fun );
749
+ builder .put ("hsla()" , rgb$Fun );
745
750
@ SuppressWarnings ("unchecked" )
746
751
Property image$Fun = new Property (
747
752
18 , union (mozOutlineLiterals0 , rgb$FunLiterals0 ), mozOutlineFunctions );
@@ -961,6 +966,8 @@ private static <T> ImmutableSet<T> union(
961
966
"repeating-radial-gradient()" ,
962
967
"rgb()" ,
963
968
"rgba()" ,
969
+ "hsl()" ,
970
+ "hsla()" ,
964
971
"richness" ,
965
972
"speak" ,
966
973
"speak-header" ,
0 commit comments