wpt / svg / types / scripted / SVGAnimatedInteger-initial-values.html

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)

SubtestStatusMessage
SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.orderX (remove)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.orderX (invalid value)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.orderY (remove)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.orderY (invalid value)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.targetX (remove)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.targetX (invalid value)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.targetY (remove)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFEConvolveMatrixElement.prototype.targetY (invalid value)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFETurbulenceElement.prototype.numOctaves (remove)FAILcannot convert 'null' or 'undefined' to object
SVGAnimatedInteger, initial values, SVGFETurbulenceElement.prototype.numOctaves (invalid value)FAILcannot 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>