gecko-dev/testing/web-platform/tests/dom/nodes/Node-appendChild.html
James Graham 200c3bd68c Bug 1097230 - Update web-platform-tests to revision 9840b559b10e05f659932a835c11832db9e01c42, a=testonly
--HG--
rename : testing/web-platform/meta/websockets/interfaces/WebSocket/events/011.html.ini => testing/web-platform/meta/IndexedDB/idbcursor_update_index5.htm.ini
rename : testing/web-platform/meta/websockets/interfaces/WebSocket/events/011.html.ini => testing/web-platform/meta/IndexedDB/idbindex_get7.htm.ini
rename : testing/web-platform/meta/websockets/interfaces/WebSocket/events/011.html.ini => testing/web-platform/meta/IndexedDB/idbindex_openCursor2.htm.ini
rename : testing/web-platform/meta/websockets/interfaces/WebSocket/events/011.html.ini => testing/web-platform/meta/IndexedDB/idbindex_openKeyCursor3.htm.ini
rename : testing/web-platform/moz.build => testing/web-platform/mozilla/tests/placeholder
rename : testing/web-platform/moz.build => testing/web-platform/outbound/tests/placeholder
rename : testing/web-platform/tests/dom/nodes/Document-createProcessingInstruction-literal-1.xhtml => testing/web-platform/tests/dom/nodes/ProcessingInstruction-literal-1.xhtml
rename : testing/web-platform/tests/dom/nodes/Document-createProcessingInstruction-literal-2.xhtml => testing/web-platform/tests/dom/nodes/ProcessingInstruction-literal-2.xhtml
rename : testing/web-platform/tests/pointerevents/pointerevent_lostpointercapture_for_disconnected_node.html => testing/web-platform/tests/pointerevents/pointerevent_lostpointercapture_for_disconnected_node-manual.html
rename : testing/web-platform/tests/pointerevents/pointerevent_pointerleave_after_pointercancel_touch.html => testing/web-platform/tests/pointerevents/pointerevent_pointerleave_after_pointercancel_touch-manual.html
rename : testing/web-platform/tests/pointerevents/pointerevent_pointerleave_after_pointerup_nohover.html => testing/web-platform/tests/pointerevents/pointerevent_pointerleave_after_pointerup_nohover-manual.html
rename : testing/web-platform/tests/pointerevents/pointerevent_pointerout_after_pointercancel_touch.html => testing/web-platform/tests/pointerevents/pointerevent_pointerout_after_pointercancel_touch-manual.html
rename : testing/web-platform/tests/pointerevents/pointerevent_pointerout_after_pointerup_nohover.html => testing/web-platform/tests/pointerevents/pointerevent_pointerout_after_pointerup_nohover-manual.html
rename : testing/web-platform/tests/pointerevents/pointerevent_pointerout_pen.html => testing/web-platform/tests/pointerevents/pointerevent_pointerout_pen-manual.html
rename : testing/web-platform/tests/pointerevents/pointerevent_setpointercapture_disconnected.html => testing/web-platform/tests/pointerevents/pointerevent_setpointercapture_disconnected-manual.html
rename : testing/web-platform/tests/workers/interfaces/DedicatedWorkerGlobalScope/postMessage/second-argument-null.html => testing/web-platform/tests/workers/interfaces/DedicatedWorkerGlobalScope/postMessage/second-argument-undefined.html
extra : rebase_source : 1fb6206eb45537037d28bebf5bc9de02791c4a17
2014-11-20 16:30:01 +00:00

59 lines
1.9 KiB
HTML

<!DOCTYPE html>
<meta charset=utf-8>
<title>Node.appendChild</title>
<link rel=help href="https://dom.spec.whatwg.org/#dom-node-appendchild">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<iframe src=about:blank></iframe>
<script>
// TODO: Exhaustive tests
function testLeaf(node, desc) {
// WebIDL.
test(function() {
assert_throws(new TypeError(), function() { node.appendChild(null) })
}, "Appending null to a " + desc)
// Pre-insert step 1.
test(function() {
assert_throws("HIERARCHY_REQUEST_ERR", function() { node.appendChild(document.createTextNode("fail")) })
}, "Appending to a " + desc)
}
// WebIDL.
test(function() {
assert_throws(new TypeError(), function() { document.body.appendChild(null) })
assert_throws(new TypeError(), function() { document.body.appendChild({'a':'b'}) })
}, "WebIDL tests")
// WebIDL and pre-insert step 1.
test(function() {
testLeaf(document.createTextNode("Foo"), "text node")
testLeaf(document.createComment("Foo"), "comment")
testLeaf(document.doctype, "doctype")
}, "Appending to a leaf node.")
// Pre-insert step 5.
test(function() {
var frameDoc = frames[0].document
assert_throws("HIERARCHY_REQUEST_ERR", function() { document.body.appendChild(frameDoc) })
}, "Appending a document")
// Pre-insert step 8.
test(function() {
var frameDoc = frames[0].document
var s = frameDoc.createElement("a")
assert_equals(s.ownerDocument, frameDoc)
document.body.appendChild(s)
assert_equals(s.ownerDocument, document)
}, "Adopting an orphan")
test(function() {
var frameDoc = frames[0].document
var s = frameDoc.createElement("b")
assert_equals(s.ownerDocument, frameDoc)
frameDoc.body.appendChild(s)
assert_equals(s.ownerDocument, frameDoc)
document.body.appendChild(s)
assert_equals(s.ownerDocument, document)
}, "Adopting a non-orphan")
</script>