summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/custom-elements/reactions/Element.html
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-02-25 01:03:57 +0000
committerMoonchild <moonchild@palemoon.org>2021-02-25 01:03:57 +0000
commitceadffab6b357723981a429e11222daf6cd6dcfb (patch)
tree5603053048d6a460f79b22bdf165fb74d32d39b0 /testing/web-platform/tests/custom-elements/reactions/Element.html
parent14fb2f966e9b54598c451e3cb35b4aa0480dafed (diff)
parentad5a13bd501e379517da1a944c104a11d951a3f5 (diff)
downloadUXP-RC_20210225.tar
UXP-RC_20210225.tar.gz
UXP-RC_20210225.tar.lz
UXP-RC_20210225.tar.xz
UXP-RC_20210225.zip
Merge branch 'master' into releaseRC_20210225
Diffstat (limited to 'testing/web-platform/tests/custom-elements/reactions/Element.html')
-rw-r--r--testing/web-platform/tests/custom-elements/reactions/Element.html61
1 files changed, 0 insertions, 61 deletions
diff --git a/testing/web-platform/tests/custom-elements/reactions/Element.html b/testing/web-platform/tests/custom-elements/reactions/Element.html
deleted file mode 100644
index ed627f44e..000000000
--- a/testing/web-platform/tests/custom-elements/reactions/Element.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>Custom Elements: CEReactions on Node interface</title>
-<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
-<meta name="assert" content="id, className, slot, setAttribute, setAttributeNS, removeAttribute, removeAttributeNS, setAttributeNode, setAttributeNodeNS, removeAttributeNode, and insertAdjacentElement of Element interface must have CEReactions">
-<meta name="help" content="https://dom.spec.whatwg.org/#element">
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script src="../resources/custom-elements-helpers.js"></script>
-<script src="./resources/reactions.js"></script>
-</head>
-<body>
-<div id="log"></div>
-<script>
-
-testReflectAttribute('id', 'id', 'foo', 'bar', 'id on Element');
-testReflectAttribute('className', 'class', 'foo', 'bar', 'className on Element');
-testReflectAttribute('slot', 'slot', 'foo', 'bar', 'slot on Element');
-
-testAttributeAdder(function (element, name, value) {
- element.setAttribute(name, value);
-}, 'setAttribute on Element');
-
-testAttributeAdder(function (element, name, value) {
- element.setAttributeNS(null, name, value);
-}, 'setAttributeNS on Element');
-
-testAttributeRemover(function (element, name) {
- element.removeAttribute(name);
-}, 'removeAttribute on Element');
-
-testAttributeRemover(function (element, name) {
- element.removeAttributeNS(null, name);
-}, 'removeAttributeNS on Element');
-
-testAttributeAdder(function (element, name, value) {
- var attr = document.createAttribute(name);
- attr.value = value;
- element.setAttributeNode(attr);
-}, 'setAttributeNode on Element');
-
-testAttributeAdder(function (element, name, value) {
- var attr = document.createAttribute(name);
- attr.value = value;
- element.setAttributeNodeNS(attr);
-}, 'setAttributeNodeNS on Element');
-
-testAttributeRemover(function (element, name) {
- var attr = element.getAttributeNode(name);
- if (attr)
- element.removeAttributeNode(element.getAttributeNode(name));
-}, 'removeAttributeNode on Element');
-
-testNodeConnector(function (newContainer, element) {
- newContainer.insertAdjacentElement('afterBegin', element);
-});
-
-</script>
-</body>
-</html>