[css-houdini-drafts] [css-typed-om]What is the expected behavior when CSSStyleValues in a readonly map are mutated?

bzbarsky has just created a new issue for https://github.com/w3c/css-houdini-drafts:

== [css-typed-om]What is the expected behavior when CSSStyleValues in a readonly map are mutated? ==
Say I have this HTML:

    <body style="color: red">

and I do:

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

After this, what do the following return:

    x.get("color").value
    document.body.computedStyleMap().get("color").value
    document.body.style.color

?

Please view or discuss this issue at https://github.com/w3c/css-houdini-drafts/issues/722 using your GitHub account

Received on Friday, 2 March 2018 16:23:15 UTC