forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathParentNode.html
More file actions
27 lines (24 loc) · 885 Bytes
/
ParentNode.html
File metadata and controls
27 lines (24 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>Custom Elements: CEReactions on ParentNode interface</title>
<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
<meta name="assert" content="prepend and append of ParentNode interface must have CEReactions">
<meta name="help" content="https://dom.spec.whatwg.org/#parentnode">
<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>
testNodeConnector(function (newContainer, customElement) {
newContainer.prepend(customElement);
}, 'prepend on ParentNode');
testNodeConnector(function (newContainer, customElement) {
newContainer.append(customElement);
}, 'append on ParentNode');
</script>
</body>
</html>