diff options
author | Moonchild <moonchild@palemoon.org> | 2021-02-04 19:41:06 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-02-04 19:41:06 +0000 |
commit | 914368530ba622ff0117cd34bec058fb0d862155 (patch) | |
tree | 6c29459914d1b01ed27fad039d0b982d1dbc32c3 /testing/web-platform/tests/notifications/interfaces.html | |
parent | c5ad76a2875ca5c06c5bbff7b2f2e3ff7b3599c3 (diff) | |
download | UXP-914368530ba622ff0117cd34bec058fb0d862155.tar UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.gz UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.lz UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.xz UXP-914368530ba622ff0117cd34bec058fb0d862155.zip |
Issue #439 - Remove web-platform tests from the tree.
This removes a total of 23,936 files we would never use nor have the capacity
to properly maintain or keep up-to-date.
Diffstat (limited to 'testing/web-platform/tests/notifications/interfaces.html')
-rw-r--r-- | testing/web-platform/tests/notifications/interfaces.html | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/testing/web-platform/tests/notifications/interfaces.html b/testing/web-platform/tests/notifications/interfaces.html deleted file mode 100644 index 95d648d7a..000000000 --- a/testing/web-platform/tests/notifications/interfaces.html +++ /dev/null @@ -1,80 +0,0 @@ -<!doctype html> -<meta charset=utf-8> -<title>Notification interface IDL tests</title> -<div id=log></div> -<script src=/resources/testharness.js></script> -<script src=/resources/testharnessreport.js></script> -<script src=/resources/WebIDLParser.js></script> -<script src=/resources/idlharness.js></script> -<script type=text/plain class=untested> -interface EventTarget { - void addEventListener(DOMString type, EventListener? callback, optional boolean capture /* = false */); - void removeEventListener(DOMString type, EventListener? callback, optional boolean capture /* = false */); - boolean dispatchEvent(Event event); -}; -[TreatNonCallableAsNull] -callback EventHandlerNonNull = any (Event event); -typedef EventHandlerNonNull? EventHandler; -</script> -<script type=text/plain> -[Constructor(DOMString title, optional NotificationOptions options)] -interface Notification : EventTarget { - static readonly attribute NotificationPermission permission; - static Promise<NotificationPermission> requestPermission(optional NotificationPermissionCallback callback); - - attribute EventHandler onclick; - attribute EventHandler onshow; - attribute EventHandler onerror; - attribute EventHandler onclose; - - readonly attribute DOMString title; - readonly attribute NotificationDirection dir; - readonly attribute DOMString lang; - readonly attribute DOMString body; - readonly attribute DOMString tag; - readonly attribute DOMString icon; - - void close(); -}; - -dictionary NotificationOptions { - NotificationDirection dir = "auto"; - DOMString lang = ""; - DOMString body; - DOMString tag; - DOMString icon; -}; - -dictionary GetNotificationsOptions { - DOMString tag; -}; - -enum NotificationPermission { - "default", - "denied", - "granted" -}; - -callback NotificationPermissionCallback = void (NotificationPermission permission); - -enum NotificationDirection { - "auto", - "ltr", - "rtl" -}; -</script> -<script> -"use strict"; -var idlArray = new IdlArray(); -[].forEach.call(document.querySelectorAll("script[type=text\\/plain]"), function(node) { - if (node.className == "untested") { - idlArray.add_untested_idls(node.textContent); - } else { - idlArray.add_idls(node.textContent); - } -}); -idlArray.add_objects({ - Notification: ['new Notification("Running idlharness.")'], -}); -idlArray.test(); -</script> |