Skip to content

Commit 70ebe39

Browse files
authored
Merge pull request w3c#271 from rjwright/SkewRotateMemberTypes
[css-typed-om] Make CSSSkew and CSSRotation store their angle members as CSSAngleValues instead of doubles
2 parents 58f0b0f + 249e2d3 commit 70ebe39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

css-typed-om/Overview.bs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ interface CSSRotation : CSSTransformComponent {
467467
readonly attribute double x;
468468
readonly attribute double y;
469469
readonly attribute double z;
470-
readonly attribute double angle;
470+
readonly attribute CSSAngleValue angle;
471471
};
472472

473473
[Constructor(double x, double y),
@@ -481,8 +481,8 @@ interface CSSScale : CSSTransformComponent {
481481
[Constructor(double dx, double dy),
482482
Constructor(CSSAngleValue ax, CSSAngleValue ay)]
483483
interface CSSSkew : CSSTransformComponent {
484-
readonly attribute double ax;
485-
readonly attribute double ay;
484+
readonly attribute CSSAngleValue ax;
485+
readonly attribute CSSAngleValue ay;
486486
};
487487

488488
[Constructor(CSSLengthValue length)]

0 commit comments

Comments
 (0)