Skip to content

Commit

Permalink
Merge branch 'main' into shims-for-java89-compat
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Samuel <[email protected]>
  • Loading branch information
mikesamuel committed Mar 25, 2024
2 parents f1af803 + 032d11b commit f9bc21d
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,10 @@ Property forKey(String propertyName) {
Set<String> whiteSpaceLiterals0 = j8().setOf(
"-moz-pre-wrap", "-o-pre-wrap", "-pre-wrap", "nowrap", "pre",
"pre-line", "pre-wrap");
Set<String> wordBreakLiterals0 = j8().setOf(
"break-all", "break-word", "keep-all", "normal");
Set<String> wordWrapLiterals0 = j8().setOf(
"break-word", "normal");
"anywhere", "break-word", "normal");
Set<String> rgb$FunLiterals0 = j8().setOf(",");
Set<String> linearGradient$FunLiterals0 = j8().setOf(
",", "to");
Expand All @@ -483,7 +485,7 @@ Property forKey(String propertyName) {
Set<String> radialGradient$FunLiterals1 = j8().setOf(
",", "center", "circle");
Set<String> rect$FunLiterals0 = j8().setOf(",", "auto");
//Set<String> alpha$FunLiterals0 = j8().setOf("=", "opacity");
//Set<String> alpha$FunLiterals0 = j8().setOf("=", "opacity");
Property mozBorderRadius =
new Property(5, mozBorderRadiusLiterals0, zeroFns);
builder.put("-moz-border-radius", mozBorderRadius);
Expand Down Expand Up @@ -747,6 +749,7 @@ Property forKey(String propertyName) {
Property whiteSpace = new Property(
0, union(fontStyleLiterals0, whiteSpaceLiterals0), zeroFns);
builder.put("white-space", whiteSpace);
builder.put("word-break", new Property(0, wordBreakLiterals0, zeroFns));
builder.put("word-wrap", new Property(0, wordWrapLiterals0, zeroFns));
builder.put("zoom", new Property(1, fontStretchLiterals1, zeroFns));
Property rgb$Fun = new Property(1, rgb$FunLiterals0, zeroFns);
Expand Down

0 comments on commit f9bc21d

Please sign in to comment.