Status: FAIL | Duration: 70ms | Subtests: 0/2 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| Iterating over an empty CSSUnparsedValue produces nothing | FAIL | CSSUnparsedValue is not defined |
| Iterating over a CSSUnparsedValue produces all fragments | FAIL | CSSVariableReferenceValue is not defined |
/css/css-typed-om/stylevalue-subclasses/cssUnparsedValue-iterable.html
<!doctype html> <meta charset="utf-8"> <title>CSSUnparsedValue Iterable Declaration</title> <link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#cssunparsedvalue"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="../resources/testhelper.js"></script> <body> <div id="log"></div> <script> 'use strict'; test(() => { const result = new CSSUnparsedValue([]); assert_array_equals([...result], [], 'result of iterating'); }, 'Iterating over an empty CSSUnparsedValue produces nothing'); test(() => { const args = [' ', new CSSVariableReferenceValue('--A')]; const result = new CSSUnparsedValue(args); assert_style_value_array_equals([...result], args, 'result of iterating'); }, 'Iterating over a CSSUnparsedValue produces all fragments'); </script>