Status: PASS | Duration: 54ms | Subtests: 12/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)
| Subtest | Status | Message |
|---|---|---|
| e.style['inset-block'] = "10px" should set inset-block-end | PASS | |
| e.style['inset-block'] = "10px" should set inset-block-start | PASS | |
| e.style['inset-block'] = "10px" should not set unrelated longhands | PASS | |
| e.style['inset-block'] = "20% auto" should set inset-block-end | PASS | |
| e.style['inset-block'] = "20% auto" should set inset-block-start | PASS | |
| e.style['inset-block'] = "20% auto" should not set unrelated longhands | PASS | |
| e.style['inset-inline'] = "30%" should set inset-inline-end | PASS | |
| e.style['inset-inline'] = "30%" should set inset-inline-start | PASS | |
| e.style['inset-inline'] = "30%" should not set unrelated longhands | PASS | |
| e.style['inset-inline'] = "auto 40px" should set inset-inline-end | PASS | |
| e.style['inset-inline'] = "auto 40px" should set inset-inline-start | PASS | |
| e.style['inset-inline'] = "auto 40px" should not set unrelated longhands | PASS |
/css/css-logical/parsing/inset-block-inline-shorthand.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Logical Properties and Values: inset-block and inset-inline set longhands</title> <link rel="help" href="https://drafts.csswg.org/css-logical/#propdef-inset-block"> <meta name="assert" content="inset-block, inset-inline support the full grammar '<'top'>{1,2}'."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/shorthand-testcommon.js"></script> </head> <body> <script> test_shorthand_value('inset-block', '10px', { 'inset-block-start': '10px', 'inset-block-end': '10px' }); test_shorthand_value('inset-block', '20% auto', { 'inset-block-start': '20%', 'inset-block-end': 'auto' }); test_shorthand_value('inset-inline', '30%', { 'inset-inline-start': '30%', 'inset-inline-end': '30%' }); test_shorthand_value('inset-inline', 'auto 40px', { 'inset-inline-start': 'auto', 'inset-inline-end': '40px' }); </script> </body> </html>