Skip to content

Commit 07d6728

Browse files
committed
[typed-om] Whoops, all these clauses are for when is2D is *false*. Fixes w3c#738.
1 parent 9f53392 commit 07d6728

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
@@ -5296,7 +5296,7 @@ length3.toString(); // "42px";
52965296

52975297
1. Let |s| initially be the empty [=string=].
52985298

5299-
2. If |this|’s {{CSSTransformValue/is2D}} internal slot is `true`:
5299+
2. If |this|’s {{CSSTransformValue/is2D}} internal slot is `false`:
53005300
1. Append "translate3d(" to |s|.
53015301

53025302
2. Serialize |this|’s {{CSSTranslate/x}} internal slot,
@@ -5335,7 +5335,7 @@ length3.toString(); // "42px";
53355335

53365336
1. Let |s| initially be the empty [=string=].
53375337

5338-
2. If |this|’s {{CSSTransformValue/is2D}} internal slot is `true`:
5338+
2. If |this|’s {{CSSTransformValue/is2D}} internal slot is `false`:
53395339
1. Append "rotate3d(" to |s|.
53405340

53415341
2. Serialize |this|’s {{CSSRotate/x}} internal slot,
@@ -5374,7 +5374,7 @@ length3.toString(); // "42px";
53745374

53755375
1. Let |s| initially be the empty [=string=].
53765376

5377-
2. If |this|’s {{CSSTransformValue/is2D}} internal slot is `true`:
5377+
2. If |this|’s {{CSSTransformValue/is2D}} internal slot is `false`:
53785378
1. Append "scale3d(" to |s|.
53795379

53805380
2. Serialize |this|’s {{CSSScale/x}} internal slot,

0 commit comments

Comments
 (0)