- From: Joe Pea via GitHub <sysbot+gh@w3.org>
- Date: Sat, 25 Jul 2020 00:45:31 +0000
- To: public-houdini-archive@w3.org
trusktr has just created a new issue for https://github.com/w3c/css-houdini-drafts:
== [css-typed-om] Update CSSUnitValue not updating element style in Chrome (bug?) ==
I'm running this in Chrome console:
```js
let Y
document.body.attributeStyleMap.set('transform',
new CSSTransformValue([
new CSSTranslate(CSS.px(10), Y = CSS.px(100), CSS.px(10))
])
)
```
This successfully changes the position of the rendered `body`.
However, if I later try to do the following nothing happens:
```js
Y.value = 200 // nothing happens!
```
Please tell me this is a bug! :pray:
Please view or discuss this issue at https://github.com/w3c/css-houdini-drafts/issues/995 using your GitHub account
Received on Saturday, 25 July 2020 00:45:33 UTC