Skip to content

Commit 4586578

Browse files
committed
updated refs
1 parent 94d9c0b commit 4586578

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

org/w3c/css/properties/css3/CssBackfaceVisibility.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
import org.w3c.css.values.CssValue;
1414

1515
/**
16-
* @spec https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/#propdef-backface-visibility
17-
16+
* @spec https://www.w3.org/TR/2021/WD-css-transforms-2-20211109/#propdef-backface-visibility
1817
*/
1918
public class CssBackfaceVisibility extends org.w3c.css.properties.css.CssBackfaceVisibility {
2019

org/w3c/css/properties/css3/CssPerspective.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import org.w3c.css.values.CssValue;
1818

1919
/**
20-
* @spec https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/#propdef-perspective
20+
* @spec https://www.w3.org/TR/2021/WD-css-transforms-2-20211109/#propdef-perspective
2121
*/
2222

2323
public class CssPerspective extends org.w3c.css.properties.css.CssPerspective {

org/w3c/css/properties/css3/CssPerspectiveOrigin.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@
1818
import static org.w3c.css.values.CssOperator.SPACE;
1919

2020
/**
21-
* @spec http://www.w3.org/TR/2012/WD-css3-transforms-20120911/#perspective-origin
21+
* @spec https://www.w3.org/TR/2021/WD-css-transforms-2-20211109/#propdef-perspective-origin
2222
*/
2323
public class CssPerspectiveOrigin extends org.w3c.css.properties.css.CssPerspectiveOrigin {
2424

2525
public static CssIdent[] allowed_values;
2626
public static CssIdent center, top, bottom, left, right;
2727

28+
// FIXME this should be a generic 'position' parsing
29+
2830
static {
2931
top = CssIdent.getIdent("top");
3032
bottom = CssIdent.getIdent("bottom");

org/w3c/css/properties/css3/CssTransformStyle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import org.w3c.css.values.CssValue;
1414

1515
/**
16-
* @spec https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/#propdef-transform-style
16+
* @spec https://www.w3.org/TR/2021/WD-css-transforms-2-20211109/#propdef-transform-style
1717
*/
1818
public class CssTransformStyle extends org.w3c.css.properties.css.CssTransformStyle {
1919

0 commit comments

Comments
 (0)