gecko-dev/testing/web-platform/tests/dom/nodes/Node-nodeValue.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

71 lines
2.3 KiB
HTML

<!doctype html>
<meta charset=utf-8>
<title>Node.nodeValue</title>
<link rel=help href="https://dom.spec.whatwg.org/#dom-node-nodevalue">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
test(function() {
var the_text = document.createTextNode("A span!");
assert_equals(the_text.nodeValue, "A span!");
assert_equals(the_text.data, "A span!");
the_text.nodeValue = "test again";
assert_equals(the_text.nodeValue, "test again");
assert_equals(the_text.data, "test again");
the_text.nodeValue = null;
assert_equals(the_text.nodeValue, "");
assert_equals(the_text.data, "");
}, "Text.nodeValue");
test(function() {
var the_comment = document.createComment("A comment!");
assert_equals(the_comment.nodeValue, "A comment!");
assert_equals(the_comment.data, "A comment!");
the_comment.nodeValue = "test again";
assert_equals(the_comment.nodeValue, "test again");
assert_equals(the_comment.data, "test again");
the_comment.nodeValue = null;
assert_equals(the_comment.nodeValue, "");
assert_equals(the_comment.data, "");
}, "Comment.nodeValue");
test(function() {
var the_pi = document.createProcessingInstruction("pi", "A PI!");
assert_equals(the_pi.nodeValue, "A PI!");
assert_equals(the_pi.data, "A PI!");
the_pi.nodeValue = "test again";
assert_equals(the_pi.nodeValue, "test again");
assert_equals(the_pi.data, "test again");
the_pi.nodeValue = null;
assert_equals(the_pi.nodeValue, "");
assert_equals(the_pi.data, "");
}, "ProcessingInstruction.nodeValue");
test(function() {
var the_link = document.createElement("a");
assert_equals(the_link.nodeValue, null);
the_link.nodeValue = "foo";
assert_equals(the_link.nodeValue, null);
}, "Element.nodeValue");
test(function() {
assert_equals(document.nodeValue, null);
document.nodeValue = "foo";
assert_equals(document.nodeValue, null);
}, "Document.nodeValue");
test(function() {
var the_frag = document.createDocumentFragment();
assert_equals(the_frag.nodeValue, null);
the_frag.nodeValue = "foo";
assert_equals(the_frag.nodeValue, null);
}, "DocumentFragment.nodeValue");
test(function() {
var the_doctype = document.doctype;
assert_equals(the_doctype.nodeValue, null);
the_doctype.nodeValue = "foo";
assert_equals(the_doctype.nodeValue, null);
}, "DocumentType.nodeValue");
</script>