Status: PASS | Duration: 57ms | Subtests: 2/2 | 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['backface-visibility'] = "visible" should set the property value | PASS | |
| e.style['backface-visibility'] = "hidden" should set the property value | PASS |
/css/css-transforms/parsing/backface-visibility-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Transform Module Level 2: parsing backface-visibility with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-transforms-2/#backface-visibility-property"> <meta name="assert" content="backface-visibility supports the full grammar 'visible | hidden'."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> test_valid_value("backface-visibility", "visible"); test_valid_value("backface-visibility", "hidden"); </script> </body> </html>