wpt / css / css-position / overlay / overlay-valid.html

Status: FAIL | Duration: 56ms | Subtests: 0/6 | 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
e.style['overlay'] = "none" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['overlay'] = "auto" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['overlay'] = "inherit" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['overlay'] = "initial" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['overlay'] = "revert" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['overlay'] = "unset" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""

/css/css-position/overlay/overlay-valid.html

<!DOCTYPE html>
<title>CSS Positioned Layout Module Test: parsing overlay with valid values</title>
<link rel="help" href="https://drafts.csswg.org/css-position-4/#overlay">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<script>
  // overlay: none | auto
  test_valid_value("overlay", "none");
  test_valid_value("overlay", "auto");
  test_valid_value("overlay", "inherit");
  test_valid_value("overlay", "initial");
  test_valid_value("overlay", "revert");
  test_valid_value("overlay", "unset");
</script>