Status: PASS | Duration: 51ms | Subtests: 10/10 | Open test on wpt.live | wpt.fyi
Data from commit:
7727414 ci: report WPT subtest changes in the PR description (#826) (2026-09-02)
| Subtest | Status | Message |
|---|---|---|
| Property box-sizing has initial value content-box | PASS | |
| Property box-sizing does not inherit | PASS | |
| Property max-height has initial value none | PASS | |
| Property max-height does not inherit | PASS | |
| Property max-width has initial value none | PASS | |
| Property max-width does not inherit | PASS | |
| Property min-height has initial value auto | PASS | |
| Property min-height does not inherit | PASS | |
| Property min-width has initial value auto | PASS | |
| Property min-width does not inherit | PASS |
/css/css-sizing/inheritance-001.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Inheritance of CSS Intrinsic & Extrinsic Sizing properties</title> <link rel="help" href="https://drafts.csswg.org/css-sizing-3/#property-index"> <meta name="assert" content="Properties do not inherit."> <meta name="assert" content="Properties have initial values according to the spec."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/inheritance-testcommon.js"></script> </head> <body> <div id="container"> <div id="target"></div> </div> <style> #container { display: grid; } </style> <script> assert_not_inherited('box-sizing', 'content-box', 'border-box'); assert_not_inherited('max-height', 'none', '10px'); assert_not_inherited('max-width', 'none', '10px'); assert_not_inherited('min-height', 'auto', '10px'); assert_not_inherited('min-width', 'auto', '10px'); </script> </body> </html>