Status: PASS | Duration: 81ms | Subtests: 40/40 | 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['flex'] = "none" should set flex-basis | PASS | |
| e.style['flex'] = "none" should set flex-grow | PASS | |
| e.style['flex'] = "none" should set flex-shrink | PASS | |
| e.style['flex'] = "none" should not set unrelated longhands | PASS | |
| e.style['flex'] = "1" should set flex-basis | PASS | |
| e.style['flex'] = "1" should set flex-grow | PASS | |
| e.style['flex'] = "1" should set flex-shrink | PASS | |
| e.style['flex'] = "1" should not set unrelated longhands | PASS | |
| e.style['flex'] = "2 3" should set flex-basis | PASS | |
| e.style['flex'] = "2 3" should set flex-grow | PASS | |
| e.style['flex'] = "2 3" should set flex-shrink | PASS | |
| e.style['flex'] = "2 3" should not set unrelated longhands | PASS | |
| e.style['flex'] = "4 5 6px" should set flex-basis | PASS | |
| e.style['flex'] = "4 5 6px" should set flex-grow | PASS | |
| e.style['flex'] = "4 5 6px" should set flex-shrink | PASS | |
| e.style['flex'] = "4 5 6px" should not set unrelated longhands | PASS | |
| e.style['flex'] = "7% 8" should set flex-basis | PASS | |
| e.style['flex'] = "7% 8" should set flex-grow | PASS | |
| e.style['flex'] = "7% 8" should set flex-shrink | PASS | |
| e.style['flex'] = "7% 8" should not set unrelated longhands | PASS | |
| e.style['flex'] = "8 auto" should set flex-basis | PASS | |
| e.style['flex'] = "8 auto" should set flex-grow | PASS | |
| e.style['flex'] = "8 auto" should set flex-shrink | PASS | |
| e.style['flex'] = "8 auto" should not set unrelated longhands | PASS | |
| e.style['flex'] = "content" should set flex-basis | PASS | |
| e.style['flex'] = "content" should set flex-grow | PASS | |
| e.style['flex'] = "content" should set flex-shrink | PASS | |
| e.style['flex'] = "content" should not set unrelated longhands | PASS | |
| e.style['flex'] = "0 fit-content" should set flex-basis | PASS | |
| e.style['flex'] = "0 fit-content" should set flex-grow | PASS | |
| e.style['flex'] = "0 fit-content" should set flex-shrink | PASS | |
| e.style['flex'] = "0 fit-content" should not set unrelated longhands | PASS | |
| e.style['flex'] = "1 0 max-content" should set flex-basis | PASS | |
| e.style['flex'] = "1 0 max-content" should set flex-grow | PASS | |
| e.style['flex'] = "1 0 max-content" should set flex-shrink | PASS | |
| e.style['flex'] = "1 0 max-content" should not set unrelated longhands | PASS | |
| e.style['flex'] = "auto 1 2" should set flex-basis | PASS | |
| e.style['flex'] = "auto 1 2" should set flex-grow | PASS | |
| e.style['flex'] = "auto 1 2" should set flex-shrink | PASS | |
| e.style['flex'] = "auto 1 2" should not set unrelated longhands | PASS |
/css/css-flexbox/parsing/flex-shorthand.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Flexible Box Layout Module Level 1: flex sets longhands</title> <link rel="help" href="https://drafts.csswg.org/css-flexbox/#propdef-flex"> <meta name="assert" content="flex supports the full grammar 'none | [ <‘flex-grow’> <‘flex-shrink’>? || <‘flex-basis’> ]'."> <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('flex', 'none', { 'flex-grow': '0', 'flex-shrink': '0', 'flex-basis': 'auto' }); test_shorthand_value('flex', '1', { 'flex-grow': '1', 'flex-shrink': '1', 'flex-basis': '0%' }); test_shorthand_value('flex', '2 3', { 'flex-grow': '2', 'flex-shrink': '3', 'flex-basis': '0%' }); test_shorthand_value('flex', '4 5 6px', { 'flex-grow': '4', 'flex-shrink': '5', 'flex-basis': '6px' }); test_shorthand_value('flex', '7% 8', { 'flex-grow': '8', 'flex-shrink': '1', 'flex-basis': '7%' }); test_shorthand_value('flex', '8 auto', { 'flex-grow': '8', 'flex-shrink': '1', 'flex-basis': 'auto' }); test_shorthand_value('flex', 'content', { 'flex-grow': '1', 'flex-shrink': '1', 'flex-basis': 'content' }); test_shorthand_value('flex', '0 fit-content', { 'flex-grow': '0', 'flex-shrink': '1', 'flex-basis': 'fit-content' }); test_shorthand_value('flex', '1 0 max-content', { 'flex-grow': '1', 'flex-shrink': '0', 'flex-basis': 'max-content' }); test_shorthand_value('flex', 'auto 1 2', { 'flex-grow': '1', 'flex-shrink': '2', 'flex-basis': 'auto' }); </script> </body> </html>