Status: FAIL | Duration: 51ms | Subtests: 0/16 | 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 |
|---|---|---|
| Should be known: '(resizable: true)' | FAIL | not a callable function |
| Should be known: '(resizable: false)' | FAIL | not a callable function |
| Should be known: '(resizable)' | FAIL | not a callable function |
| Should be parseable: '(resizable: 0)' | FAIL | not a callable function |
| Should be unknown: '(resizable: 0)' | FAIL | not a callable function |
| Should be parseable: '(resizable: 1)' | FAIL | not a callable function |
| Should be unknown: '(resizable: 1)' | FAIL | not a callable function |
| Should be parseable: '(resizable: none)' | FAIL | not a callable function |
| Should be unknown: '(resizable: none)' | FAIL | not a callable function |
| Should be parseable: '(resizable: random)' | FAIL | not a callable function |
| Should be unknown: '(resizable: random)' | FAIL | not a callable function |
| Should be parseable: '(resizable: 10px)' | FAIL | not a callable function |
| Should be unknown: '(resizable: 10px)' | FAIL | not a callable function |
| Should be parseable: '(resizable: 1%)' | FAIL | not a callable function |
| Should be unknown: '(resizable: 1%)' | FAIL | not a callable function |
| Check that resizable evaluates to true in the boolean context | FAIL | not a callable function |
/css/mediaqueries/resizable.tentative.html
<!DOCTYPE html> <link rel="help" href="https://github.com/explainers-by-googlers/additional-windowing-controls/blob/main/README.md" /> <script type="text/javascript" src="/resources/testharness.js"></script> <script type="text/javascript" src="/resources/testharnessreport.js"></script> <script type="text/javascript" src="/css/mediaqueries/resources/matchmedia-utils.js"></script> <script> query_should_be_known("(resizable: true)"); query_should_be_known("(resizable: false)"); query_should_be_known("(resizable)"); query_should_be_unknown("(resizable: 0)"); query_should_be_unknown("(resizable: 1)"); query_should_be_unknown("(resizable: none)"); query_should_be_unknown("(resizable: random)"); query_should_be_unknown("(resizable: 10px)"); query_should_be_unknown("(resizable: 1%)"); test(() => { let booleanContext = window.matchMedia("(resizable)"); assert_true(booleanContext.matches); }, "Check that resizable evaluates to true in the boolean context"); </script>