wpt / css / mediaqueries / resizable.tentative.html

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)

SubtestStatusMessage
Should be known: '(resizable: true)'FAILnot a callable function
Should be known: '(resizable: false)'FAILnot a callable function
Should be known: '(resizable)'FAILnot a callable function
Should be parseable: '(resizable: 0)'FAILnot a callable function
Should be unknown: '(resizable: 0)'FAILnot a callable function
Should be parseable: '(resizable: 1)'FAILnot a callable function
Should be unknown: '(resizable: 1)'FAILnot a callable function
Should be parseable: '(resizable: none)'FAILnot a callable function
Should be unknown: '(resizable: none)'FAILnot a callable function
Should be parseable: '(resizable: random)'FAILnot a callable function
Should be unknown: '(resizable: random)'FAILnot a callable function
Should be parseable: '(resizable: 10px)'FAILnot a callable function
Should be unknown: '(resizable: 10px)'FAILnot a callable function
Should be parseable: '(resizable: 1%)'FAILnot a callable function
Should be unknown: '(resizable: 1%)'FAILnot a callable function
Check that resizable evaluates to true in the boolean contextFAILnot 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>