Skip to content

Commit 9bc6c06

Browse files
committed
Change order of CSSRotation arguments to be consistent with rotate3d.
1 parent bf5008c commit 9bc6c06

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
@@ -462,13 +462,13 @@ interface CSSTranslation : CSSTransformComponent {
462462

463463
[Constructor(double degrees),
464464
Constructor(CSSAngleValue angle),
465-
Constructor(double degrees, double x, double y, double z),
466-
Constructor(CSSAngleValue angle, double x, double y, double z)]
465+
Constructor(double x, double y, double z, double degrees),
466+
Constructor(double x, double y, double z, CSSAngleValue angle)]
467467
interface CSSRotation : CSSTransformComponent {
468-
readonly attribute double angle;
469468
readonly attribute double x;
470469
readonly attribute double y;
471470
readonly attribute double z;
471+
readonly attribute double angle;
472472
};
473473

474474
[Constructor(double x, double y),

0 commit comments

Comments
 (0)