Note: This feature is available in Web Workers.
The values() method of the CSSUnparsedValue interface returns a new array iterator that yields each item in the object.
values()None.
A new iterable iterator.
const value = new CSSUnparsedValue(["1em", "#445566", "-45px"]);
for (const fragment of value.values()) {
console.log(fragment);
}
// "1em"
// "#445566"
// "-45px"