wpt / css / css-gaps / parsing / rule-overlap-valid.html

Status: FAIL | Duration: 36ms | 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)

SubtestStatusMessage
e.style['rule-overlap'] = "row-over-column" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['rule-overlap'] = "column-over-row" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""

/css/css-gaps/parsing/rule-overlap-valid.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Gaps: parsing rule-overlap valid values</title>
  <link rel="author" title="Javier Contreras Tenorio" href="mailto:javiercon@microsoft.com">
  <link rel="help" href="https://drafts.csswg.org/css-gaps-1/#overlap">
  <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>
    test_valid_value('rule-overlap', 'row-over-column');
    test_valid_value('rule-overlap', 'column-over-row');
  </script>
</body>
</html>