Status: FAIL | Duration: 57ms | Subtests: 0/10 | Open test on wpt.live | wpt.fyi
Data from commit:
96ff533 Remove hidden nodes from the acccessibility tree (#823) (2026-09-07)
| Subtest | Status | Message |
|---|---|---|
| SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.orderX (remove) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.orderX (invalid value) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.orderY (remove) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.orderY (invalid value) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.targetX (remove) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.targetX (invalid value) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.targetY (remove) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.targetY (invalid value) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFETurbulenceElement.prototype.numOctaves (remove) | FAIL | cannot convert 'null' or 'undefined' to object |
| SVGAnimatedInteger, initial values, SVGFETurbulenceElement.prototype.numOctaves (invalid value) | FAIL | cannot convert 'null' or 'undefined' to object |
/svg/types/scripted/SVGAnimatedInteger-initial-values.html
<!DOCTYPE html> <title>SVGAnimatedInteger, initial values</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="support/initial-value-helper.js"></script> <script> const propertyToContentAttribute = { orderX: 'order', orderY: 'order', }; assert_initial_values([ { interface: 'SVGFEConvolveMatrixElement', attributes: [ 'orderX', 'orderY', 'targetX', 'targetY' ], orderX: { initial: 3 }, orderY: { initial: 3 } }, { interface: 'SVGFETurbulenceElement', attributes: [ 'numOctaves' ], numOctaves: { initial: 1 } }, ], { initial: 0, valid: '42', mapProperty: propertyToContentAttribute }); </script>