diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /testing/web-platform/meta/uievents | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/meta/uievents')
4 files changed, 84 insertions, 0 deletions
diff --git a/testing/web-platform/meta/uievents/idlharness.window.js.ini b/testing/web-platform/meta/uievents/idlharness.window.js.ini index 6d951a1cbe..08fc34ba40 100644 --- a/testing/web-platform/meta/uievents/idlharness.window.js.ini +++ b/testing/web-platform/meta/uievents/idlharness.window.js.ini @@ -4,3 +4,57 @@ [MouseEvent interface: attribute layerY] expected: FAIL + + [Stringification of (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })()] + expected: FAIL + + [TextEvent interface: calling initTextEvent(DOMString, optional boolean, optional boolean, optional Window?, optional DOMString) on (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })() with too few arguments must throw TypeError] + expected: FAIL + + [UIEvent interface: calling initUIEvent(DOMString, optional boolean, optional boolean, optional Window?, optional long) on (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })() with too few arguments must throw TypeError] + expected: FAIL + + [UIEvent interface: (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })() must inherit property "detail" with the proper type] + expected: FAIL + + [UIEvent interface: (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })() must inherit property "initUIEvent(DOMString, optional boolean, optional boolean, optional Window?, optional long)" with the proper type] + expected: FAIL + + [UIEvent interface: (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })() must inherit property "which" with the proper type] + expected: FAIL + + [UIEvent interface: (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })() must inherit property "view" with the proper type] + expected: FAIL + + [TextEvent interface: (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })() must inherit property "initTextEvent(DOMString, optional boolean, optional boolean, optional Window?, optional DOMString)" with the proper type] + expected: FAIL + + [TextEvent must be primary interface of (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })()] + expected: FAIL + + [TextEvent interface: (() => { const ev = document.createEvent("TextEvent"); ev.initTextEvent("event"); return ev; })() must inherit property "data" with the proper type] + expected: FAIL + + [TextEvent interface: existence and properties of interface object] + expected: FAIL + + [TextEvent interface object length] + expected: FAIL + + [TextEvent interface object name] + expected: FAIL + + [TextEvent interface: existence and properties of interface prototype object] + expected: FAIL + + [TextEvent interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [TextEvent interface: existence and properties of interface prototype object's @@unscopables property] + expected: FAIL + + [TextEvent interface: attribute data] + expected: FAIL + + [TextEvent interface: operation initTextEvent(DOMString, optional boolean, optional boolean, optional Window?, optional DOMString)] + expected: FAIL diff --git a/testing/web-platform/meta/uievents/textInput/api.html.ini b/testing/web-platform/meta/uievents/textInput/api.html.ini new file mode 100644 index 0000000000..aa4b468ca0 --- /dev/null +++ b/testing/web-platform/meta/uievents/textInput/api.html.ini @@ -0,0 +1,15 @@ +[api.html] + [No constructor] + expected: FAIL + + [document.CreateEvent('TextEvent') prototype chain] + expected: FAIL + + [initTextEvent('foo')] + expected: FAIL + + [initTextEvent('foo', true, true, window, 'bar')] + expected: FAIL + + [case sensitivity: textInput vs textinput] + expected: FAIL diff --git a/testing/web-platform/meta/uievents/textInput/basic.html.ini b/testing/web-platform/meta/uievents/textInput/basic.html.ini new file mode 100644 index 0000000000..ec919f08aa --- /dev/null +++ b/testing/web-platform/meta/uievents/textInput/basic.html.ini @@ -0,0 +1,9 @@ +[basic.html] + [textInput: basic, <input>] + expected: FAIL + + [textInput: basic, <textarea>] + expected: FAIL + + [textInput: basic, <div contenteditable="true">] + expected: FAIL diff --git a/testing/web-platform/meta/uievents/textInput/enter-textarea-contenteditable.html.ini b/testing/web-platform/meta/uievents/textInput/enter-textarea-contenteditable.html.ini new file mode 100644 index 0000000000..2f436628e8 --- /dev/null +++ b/testing/web-platform/meta/uievents/textInput/enter-textarea-contenteditable.html.ini @@ -0,0 +1,6 @@ +[enter-textarea-contenteditable.html] + [textInput: Enter key for textarea and contenteditable, <textarea>] + expected: FAIL + + [textInput: Enter key for textarea and contenteditable, <div contenteditable="true">] + expected: FAIL |