Status: FAIL | Duration: 48ms | Subtests: 0/4 | 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 |
|---|---|---|
| new DOMMatrix([0,0,0,0,0,0]).invertSelf() | FAIL | DOMMatrix is not defined |
| new DOMMatrix([1,1,1,1,1,1]).invertSelf() | FAIL | DOMMatrix is not defined |
| new DOMMatrix([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]).invertSelf() | FAIL | DOMMatrix is not defined |
| new DOMMatrix([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]).invertSelf() | FAIL | DOMMatrix is not defined |
/css/geometry/DOMMatrix-invertSelf.html
<!DOCTYPE html> <title>Geometry Interfaces: DOMMatrix and DOMMatrixReadOnly invertSelf</title> <link rel="help" href="https://drafts.fxtf.org/geometry/#DOMMatrix"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="support/dommatrix-test-util.js"></script> <script> [ [[0, 0, 0, 0, 0, 0], [NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN]], [[1, 1, 1, 1, 1, 1], [NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN]], [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN]], [[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]], ].forEach(([actual_array, expected_array]) => { test(() => { const actual = new DOMMatrix(actual_array); const actualInvertSelfReturnValue = actual.invertSelf(); assert_true(actual === actualInvertSelfReturnValue); const expected = new DOMMatrix(expected_array); checkMatrix(actual, expected); }, `new DOMMatrix([${actual_array}]).invertSelf()`); }); </script>