Re: [css-houdini-drafts] [css-typed-om] How does Typed OM interact with existing setters on CSSStyleDeclaration?

Similarly, if I set `document.body.style.color = "green"`, what does that do to the object identity of the `CSSKeywordValue` returned by `get("color")` on an already-existing map gotten via `document.body.computedStyleMap().get("color")`?  So specifically:

    var x = document.body.computedStyleMap();
    var y = x.get("color");
    document.body.style.color = "green"

and now is `x.get("color") === y` true?

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

Received on Friday, 2 March 2018 16:38:18 UTC