mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 17:19:35 +00:00
22 lines
646 B
HTML
22 lines
646 B
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<title>CharacterData.appendData</title>
|
|
<link rel=help href="https://dom.spec.whatwg.org/#dom-characterdata-appenddata">
|
|
<link rel=help href="https://dom.spec.whatwg.org/#dom-characterdata-data">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<div id="log"></div>
|
|
<script>
|
|
function testNode(node) {
|
|
test(function() {
|
|
assert_equals(node.data, "test")
|
|
node.appendData("test")
|
|
assert_equals(node.data, "testtest")
|
|
})
|
|
}
|
|
test(function() {
|
|
testNode(document.createTextNode("test"))
|
|
testNode(document.createComment("test"))
|
|
})
|
|
</script>
|