Status: PASS | Duration: 60ms | Subtests: 20/20 | 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'] = "1px 2px 3px 4px" should set bottom | PASS | |
| e.style['inset'] = "1px 2px 3px 4px" should set left | PASS | |
| e.style['inset'] = "1px 2px 3px 4px" should set right | PASS | |
| e.style['inset'] = "1px 2px 3px 4px" should set top | PASS | |
| e.style['inset'] = "1px 2px 3px 4px" should not set unrelated longhands | PASS | |
| e.style['inset'] = "1px 2px 3px" should set bottom | PASS | |
| e.style['inset'] = "1px 2px 3px" should set left | PASS | |
| e.style['inset'] = "1px 2px 3px" should set right | PASS | |
| e.style['inset'] = "1px 2px 3px" should set top | PASS | |
| e.style['inset'] = "1px 2px 3px" should not set unrelated longhands | PASS | |
| e.style['inset'] = "1px 2px" should set bottom | PASS | |
| e.style['inset'] = "1px 2px" should set left | PASS | |
| e.style['inset'] = "1px 2px" should set right | PASS | |
| e.style['inset'] = "1px 2px" should set top | PASS | |
| e.style['inset'] = "1px 2px" should not set unrelated longhands | PASS | |
| e.style['inset'] = "1px" should set bottom | PASS | |
| e.style['inset'] = "1px" should set left | PASS | |
| e.style['inset'] = "1px" should set right | PASS | |
| e.style['inset'] = "1px" should set top | PASS | |
| e.style['inset'] = "1px" should not set unrelated longhands | PASS |
/css/css-logical/parsing/inset-shorthand.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Logical Properties and Values: inset sets longhands</title> <link rel="help" href="https://drafts.csswg.org/css-logical/#propdef-inset"> <meta name="assert" content="inset supports the full grammar '<'top'>{1,4}'."> <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', '1px 2px 3px 4px', { 'top': '1px', 'right': '2px', 'bottom': '3px', 'left': '4px' }); test_shorthand_value('inset', '1px 2px 3px', { 'top': '1px', 'right': '2px', 'bottom': '3px', 'left': '2px' }); test_shorthand_value('inset', '1px 2px', { 'top': '1px', 'right': '2px', 'bottom': '1px', 'left': '2px' }); test_shorthand_value('inset', '1px', { 'top': '1px', 'right': '1px', 'bottom': '1px', 'left': '1px' }); </script> </body> </html>