Re: [css-houdini-drafts] [css-typed-om] Describe what setting is2D on CSSTransformComponent should do

In other words: 

```js
let rotation = new CSSRotation(1, 2, 3, CSS.deg(10));  assert_false(rotation.is2D);
assert_equals(rotation.z, 3);
assert_equals(rotation+"", "rotate3d(1, 2, 3, 10deg)");

rotation.is2D = true;
assert_true(rotation.is2D);
assert_equals(rotation.z, 3);
assert_equals(rotation+"", "rotate(10deg)");
```

(Actually defining the stringifiers is still on my TODO list, but this is what's intended.)

-- 
GitHub Notification of comment by tabatkins
Please view or discuss this issue at https://github.com/w3c/css-houdini-drafts/issues/414#issuecomment-309579613 using your GitHub account

Received on Monday, 19 June 2017 21:31:18 UTC