Skip to content

Commit cccaca5

Browse files
authored
Merge pull request w3c#246 from wilddamon/updateRotation
Change order of CSSRotation arguments to be consistent with rotate3d.
2 parents 4a1ca96 + 9bc6c06 commit cccaca5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

css-typed-om/Overview.bs

+3-3
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)