Status: PASS | Duration: 56ms | Subtests: 13/13 | 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 |
|---|---|---|
| Property background-repeat value 'repeat-x' | PASS | |
| Property background-repeat value 'repeat-y' | PASS | |
| Property background-repeat value 'repeat' | PASS | |
| Property background-repeat value 'space' | PASS | |
| Property background-repeat value 'round' | PASS | |
| Property background-repeat value 'no-repeat' | PASS | |
| Property background-repeat value 'repeat space' | PASS | |
| Property background-repeat value 'round no-repeat' | PASS | |
| Property background-repeat value 'repeat repeat' | PASS | |
| Property background-repeat value 'repeat-x, repeat-y, repeat' | PASS | |
| Property background-repeat value 'repeat-x' multiple base values | PASS | |
| Property background-repeat value 'repeat-x, repeat-y' multiple base values | PASS | |
| Property background-repeat value 'repeat-x, repeat-y, repeat' multiple base values | PASS |
/css/css-backgrounds/parsing/background-repeat-computed.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Backgrounds and Borders: getComputedStyle().backgroundRepeat</title> <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-repeat"> <meta name="assert" content="background-repeat value is as specified."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/computed-testcommon.js"></script> </head> <body> <div id="target"></div> <script> test_computed_value("background-repeat", "repeat-x"); test_computed_value("background-repeat", "repeat-y"); test_computed_value("background-repeat", "repeat"); test_computed_value("background-repeat", "space"); test_computed_value("background-repeat", "round"); test_computed_value("background-repeat", "no-repeat"); test_computed_value("background-repeat", "repeat space"); test_computed_value("background-repeat", "round no-repeat"); test_computed_value("background-repeat", "repeat repeat", "repeat"); test_computed_value("background-repeat", "repeat-x, repeat-y, repeat"); document.getElementById("target").style['background-image'] = "none, none"; test_computed_value("background-repeat", "repeat-x", "repeat-x", "multiple base values"); test_computed_value("background-repeat", "repeat-x, repeat-y", "repeat-x, repeat-y", "multiple base values"); test_computed_value("background-repeat", "repeat-x, repeat-y, repeat", "repeat-x, repeat-y, repeat", "multiple base values"); </script> </body> </html>