wpt / css / css-gaps / parsing / rule-visibility-items-valid.html

Status: FAIL | Duration: 47ms | Subtests: 0/12 | 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['column-rule-visibility-items'] = "all" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['column-rule-visibility-items'] = "around" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['column-rule-visibility-items'] = "between" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['column-rule-visibility-items'] = "normal" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['row-rule-visibility-items'] = "all" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['row-rule-visibility-items'] = "around" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['row-rule-visibility-items'] = "between" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['row-rule-visibility-items'] = "normal" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['rule-visibility-items'] = "all" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['rule-visibility-items'] = "around" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['rule-visibility-items'] = "between" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['rule-visibility-items'] = "normal" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""

/css/css-gaps/parsing/rule-visibility-items-valid.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Gaps: parsing *-rule-visibility-items with valid values</title>
  <link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
  <link rel="help" href="https://drafts.csswg.org/css-gaps-1/">
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
  <div id="target"></div>
  <script>
    const properties = ["column-rule-visibility-items", "row-rule-visibility-items", "rule-visibility-items"];
    for (const property of properties) {
      test_valid_value(property, "all");
      test_valid_value(property, "around");
      test_valid_value(property, "between");
      test_valid_value(property, 'normal');
    }
  </script>
</body>
</html>