CSSUnparsedValue: values() method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Want more browser support for this feature? Tell us why.
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.
Syntax
js
values()
Parameters
None.
Return value
A new iterable iterator.
Examples
>Iterating over values
js
const value = new CSSUnparsedValue(["1em", "#445566", "-45px"]);
for (const fragment of value.values()) {
console.log(fragment);
}
// "1em"
// "#445566"
// "-45px"
Specifications
| Specification |
|---|
| CSS Typed OM Level 1> # cssunparsedvalue> |