Status: PASS | Duration: 77ms | Subtests: 32/32 | 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 |
|---|---|---|
| Checking invalid combination - justify-items: auto | PASS | |
| Checking invalid combination - justify-items: space-around | PASS | |
| Checking invalid combination - justify-items: auto safe | PASS | |
| Checking invalid combination - justify-items: auto left | PASS | |
| Checking invalid combination - justify-items: normal unsafe | PASS | |
| Checking invalid combination - justify-items: normal stretch | PASS | |
| Checking invalid combination - justify-items: baseline normal | PASS | |
| Checking invalid combination - justify-items: baseline center | PASS | |
| Checking invalid combination - justify-items: first baseline center | PASS | |
| Checking invalid combination - justify-items: last baseline center | PASS | |
| Checking invalid combination - justify-items: baseline last | PASS | |
| Checking invalid combination - justify-items: baseline first | PASS | |
| Checking invalid combination - justify-items: stretch unsafe | PASS | |
| Checking invalid combination - justify-items: stretch right | PASS | |
| Checking invalid combination - justify-items: unsafe unsafe | PASS | |
| Checking invalid combination - justify-items: unsafe safe | PASS | |
| Checking invalid combination - justify-items: center start | PASS | |
| Checking invalid combination - justify-items: unsafe stretch | PASS | |
| Checking invalid combination - justify-items: safe stretch | PASS | |
| Checking invalid combination - justify-items: baseline safe | PASS | |
| Checking invalid combination - justify-items: unsafe baseline | PASS | |
| Checking invalid combination - justify-items: unsafe safe left | PASS | |
| Checking invalid combination - justify-items: unsafe left safe | PASS | |
| Checking invalid combination - justify-items: left safe unsafe safe | PASS | |
| Checking invalid combination - justify-items: start safe | PASS | |
| Checking invalid combination - justify-items: safe | PASS | |
| Checking invalid combination - justify-items: legacy start | PASS | |
| Checking invalid combination - justify-items: legacy end | PASS | |
| Checking invalid combination - justify-items: legacy right unsafe | PASS | |
| Checking invalid combination - justify-items: legacy auto | PASS | |
| Checking invalid combination - justify-items: legacy stretch | PASS | |
| Checking invalid combination - justify-items: legacy left right | PASS |
/css/css-align/default-alignment/parse-justify-items-004.html
<!DOCTYPE html> <meta charset=utf-8> <title>Default-Alignment: justify-items - invalid values</title> <link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" /> <link rel="help" href="https://drafts.csswg.org/css-align-3/#default-alignment" /> <link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-justify-items" /> <meta name="assert" content="Check bad combinations of specified values."/> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/css-align/resources/alignment-parsing-utils.js"></script> <div id="log"></div> <script> element = document.createElement("div"); document.body.appendChild(element); let values = ["auto", "space-around"].concat(invalidPositionValues, invalidLegacyValues); values.forEach(function(value) { test(function() { checkBadValues(element, "justifyItems", "justify-items", value); }, "Checking invalid combination - justify-items: " + value); }); </script>