@@ -293,7 +293,9 @@ 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()" ,"hsl(" ,"hsl()" ,"hsla(" ,"hsla()" );
296
+ ImmutableMap .<String , String >of (
297
+ "rgb(" , "rgb()" , "rgba(" , "rgba()" ,
298
+ "hsl(" , "hsl()" , "hsla(" , "hsla()" );
297
299
ImmutableSet <String > mozOutlineColorLiterals0 =
298
300
ImmutableSet .of ("inherit" , "invert" );
299
301
ImmutableSet <String > mozOutlineStyleLiterals0 =
@@ -323,7 +325,8 @@ Property forKey(String propertyName) {
323
325
.put ("radial-gradient(" , "radial-gradient()" )
324
326
.put ("repeating-linear-gradient(" , "repeating-linear-gradient()" )
325
327
.put ("repeating-radial-gradient(" , "repeating-radial-gradient()" )
326
- .put ("rgb(" , "rgb()" ).put ("rgba(" , "rgba()" ).put ("hsl(" , "hsl()" ).put ("hsla(" ,"hsla()" )
328
+ .put ("rgb(" , "rgb()" ).put ("rgba(" , "rgba()" )
329
+ .put ("hsl(" , "hsl()" ).put ("hsla(" , "hsla()" )
327
330
.build ();
328
331
ImmutableSet <String > backgroundAttachmentLiterals0 =
329
332
ImmutableSet .of ("," , "fixed" , "local" , "scroll" );
@@ -467,8 +470,6 @@ Property forKey(String propertyName) {
467
470
ImmutableSet <String > wordWrapLiterals0 = ImmutableSet .of (
468
471
"break-word" , "normal" );
469
472
ImmutableSet <String > rgb$FunLiterals0 = ImmutableSet .of ("," );
470
-
471
-
472
473
ImmutableSet <String > linearGradient$FunLiterals0 = ImmutableSet .of (
473
474
"," , "to" );
474
475
ImmutableSet <String > radialGradient$FunLiterals0 = ImmutableSet .of (
@@ -744,7 +745,7 @@ Property forKey(String propertyName) {
744
745
builder .put ("zoom" , new Property (1 , fontStretchLiterals1 , zeroFns ));
745
746
Property rgb$Fun = new Property (1 , rgb$FunLiterals0 , zeroFns );
746
747
builder .put ("rgb()" , rgb$Fun );
747
-
748
+ builder . put ( "rgba()" , rgb$Fun );
748
749
builder .put ("hsl()" , rgb$Fun );
749
750
builder .put ("hsla()" , rgb$Fun );
750
751
@ SuppressWarnings ("unchecked" )
@@ -840,7 +841,6 @@ Property forKey(String propertyName) {
840
841
builder .put ("width" , margin );
841
842
builder .put ("word-spacing" , letterSpacing );
842
843
builder .put ("z-index" , bottom );
843
- builder .put ("rgba()" , rgb$Fun );
844
844
builder .put ("repeating-linear-gradient()" , linearGradient$Fun );
845
845
builder .put ("repeating-radial-gradient()" , radialGradient$Fun );
846
846
DEFINITIONS = builder .build ();
0 commit comments