Status: PASS | Duration: 79ms | Subtests: 7/7 | 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 |
|---|---|---|
| Test 'initial' value when nothing is specified | PASS | |
| Test justify-items: 'initial' | PASS | |
| Test grid items justify-items: 'initial' | PASS | |
| Test flex items justify-items: 'initial' | PASS | |
| Test absolute positioned elements justify-items: 'initial' | PASS | |
| Test absolute positioned grid items justify-items: 'initial' | PASS | |
| Test absolute positioned flex items justify-items: 'initial' | PASS |
/css/css-align/default-alignment/parse-justify-items-002.html
<!DOCTYPE html> <meta charset=utf-8> <title>Default-Alignment: justify-items - 'initial' value</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" /> <link rel="help" href="https://drafts.csswg.org/css-cascade/#initial-values" /> <meta name="assert" content="Check the 'initial' value in different scenarios."/> <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> container = document.createElement("div"); element = document.createElement("div"); container.appendChild(element); document.body.appendChild(container); test(function() { element = document.createElement("div"); document.body.appendChild(element); checkValues(element, "justifyItems", "justify-items", "", "normal"); }, "Test 'initial' value when nothing is specified"); test(function() { container.style.display = ""; checkInitialValues(element, "justifyItems", "justify-items", "center", "normal"); }, "Test justify-items: 'initial'"); test(function() { container.style.display = "grid"; checkInitialValues(element, "justifyItems", "justify-items", "safe start", "normal"); }, "Test grid items justify-items: 'initial'"); test(function() { container.style.display = "flex"; checkInitialValues(element, "justifyItems", "justify-items", "unsafe end", "normal"); }, "Test flex items justify-items: 'initial'"); test(function() { container.style.display = ""; element.style.position = "absolute"; checkInitialValues(element, "justifyItems", "justify-items", "start", "normal"); }, "Test absolute positioned elements justify-items: 'initial'"); test(function() { container.style.display = "grid"; element.style.position = "absolute"; checkInitialValues(element, "justifyItems", "justify-items", "end", "normal"); }, "Test absolute positioned grid items justify-items: 'initial'"); test(function() { container.style.display = "flex"; element.style.position = "absolute"; checkInitialValues(element, "justifyItems", "justify-items", "end", "normal"); }, "Test absolute positioned flex items justify-items: 'initial'"); </script>