Status: FAIL | Duration: 62ms | Subtests: 1/16 | 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 |
|---|---|---|
| oncut: property must be on SVGElement not Element | FAIL | assert_true: SVGElement has an own property named "oncut" expected true got false |
| oncut: the default value must be null | FAIL | assert_equals: The default value of the property is null for a Element instance expected (object) null but got (undefined) undefined |
| oncut: the content attribute must be compiled into a function as the corresponding property | FAIL | assert_equals: The oncut property must be a function expected "function" but got "undefined" |
| oncut: the content attribute must execute when an event is dispatched | FAIL | Illegal constructor |
| oncopy: property must be on SVGElement not Element | FAIL | assert_true: SVGElement has an own property named "oncopy" expected true got false |
| oncopy: the default value must be null | FAIL | assert_equals: The default value of the property is null for a Element instance expected (object) null but got (undefined) undefined |
| oncopy: the content attribute must be compiled into a function as the corresponding property | FAIL | assert_equals: The oncopy property must be a function expected "function" but got "undefined" |
| oncopy: the content attribute must execute when an event is dispatched | FAIL | Illegal constructor |
| onpaste: property must be on SVGElement not Element | FAIL | assert_true: SVGElement has an own property named "onpaste" expected true got false |
| onpaste: the default value must be null | FAIL | assert_equals: The default value of the property is null for a Element instance expected (object) null but got (undefined) undefined |
| onpaste: the content attribute must be compiled into a function as the corresponding property | FAIL | assert_equals: The onpaste property must be a function expected "function" but got "undefined" |
| onpaste: the content attribute must execute when an event is dispatched | FAIL | Illegal constructor |
| oncontextmenu: property must be on SVGElement not Element | FAIL | assert_true: SVGElement has an own property named "oncontextmenu" expected true got false |
| oncontextmenu: the default value must be null | PASS | |
| oncontextmenu: the content attribute must be compiled into a function as the corresponding property | FAIL | assert_equals: The oncontextmenu property must be a function expected "function" but got "object" |
| oncontextmenu: the content attribute must execute when an event is dispatched | FAIL | Illegal constructor |
/svg/types/scripted/event-handler-all-document-element-events.svg
<?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml"> <title>oncopy / oncut / onpaste / oncontextmenu</title> <metadata> <h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/types.html#InterfaceSVGElement"/> </metadata> <h:script src="/resources/testharness.js"/> <h:script src="/resources/testharnessreport.js"/> <script><![CDATA[ "use strict"; setup({ explicit_done: true }); const names = ["oncut","oncopy","onpaste","oncontextmenu"]; for (const name of names) { const withoutOn = name.substring(2); test(() => { assert_true(SVGElement.prototype.hasOwnProperty(name), `${SVGElement.prototype.constructor.name} has an own property named "${name}"`); assert_false(name in Element.prototype, `Element.prototype must not contain a "${name}" property`); }, `${name}: property must be on SVGElement not Element`); test(() => { const svgElement = document.createElementNS("http://www.w3.org/2000/svg", "g"); assert_equals(svgElement[name], null, `The default value of the property is null for a ${svgElement.constructor.name} instance`); }, `${name}: the default value must be null`); test(() => { const el = document.createElementNS("http://www.w3.org/2000/svg", "g"); el.setAttribute(name, `window.${name}Happened = true;`); const compiledHandler = el[name]; assert_equals(typeof compiledHandler, "function", `The ${name} property must be a function`); compiledHandler(); assert_true(window[name + "Happened"], "Calling the handler must run the code"); }, `${name}: the content attribute must be compiled into a function as the corresponding property`); test(() => { const el = document.createElementNS("http://www.w3.org/2000/svg", "g"); el.setAttribute(name, `window.${name}Happened2 = true;`); el.dispatchEvent(new Event(withoutOn)); assert_true(window[name + "Happened2"], "Dispatching an event must run the code"); }, `${name}: the content attribute must execute when an event is dispatched`); } done(); ]]></script> </svg>