You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if the value was constructed from a USVString
the serialization is the USVString from which the value was constructed.
The trouble is, that a single USVString can produce multiple CSSStyleValues. As far as I can tell, all paths go through "parse a CSSStyleValue", which parses the string as a list of CSSStyleValues, optionally returning just the first one. The source string then wouldn't correspond to one CSSStyleValue, but only part of it would.
For example:
// parse() means we only get the first valuevarcool=CSSStringValue.parse("background","url('cool.png'), url('rad.png')");// Source string is "url('cool.png'), url('rad.png')" but this should only log "url('cool.png')".console.log(cool.toString());