- From: shans via GitHub <sysbot+gh@w3.org>
- Date: Wed, 27 Jul 2016 22:11:33 +0000
- To: public-houdini-archive@w3.org
To clarify, this is saying that StylePropertyMaps won't update based
on style changes from other sources:
```
var map = el.styleMap;
map.get('height') // for argument's sake, CSSSimpleLength(100, 'px')
el.style.height = '200px';
map.get('height') // will still return CSSSimpleLength(100, 'px')
```
It might actually be reasonably simple to support live maps for
specified objects but for computed styles this gets quite expensive,
and it seems best to be consistent.
--
GitHub Notification of comment by shans
Please view or discuss this issue at
https://github.com/w3c/css-houdini-drafts/issues/149#issuecomment-235737539
using your GitHub account
Received on Wednesday, 27 July 2016 22:11:40 UTC