gecko/testing/web-platform/tests/domparsing/insert-adjacent.html
James Graham 0d9c2c7bc3 Bug 945222 - Initial import of web-platform-tests testsuite 1/4: test data
--HG--
extra : rebase_source : d635a4f39c587d4d381b486dd63de747865b77a2
2014-09-04 12:48:31 +01:00

39 lines
985 B
HTML

<!doctype html>
<title>insertAdjacentHTML</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#element {
display: none;
}
</style>
<div id="element"></div>
<div id="log"></div>
<script>
function wrap(text) {
return '<h3>' + text + '</h3>';
}
var possiblePositions = {
'beforebegin': 'previousSibling'
, 'afterbegin': 'firstChild'
, 'beforeend': 'lastChild'
, 'afterend': 'nextSibling'
}
var el = document.querySelector('#element');
Object.keys(possiblePositions).forEach(function(position) {
var html = wrap(position);
test(function() {
el.insertAdjacentHTML(position, html);
var heading = document.createElement('h3');
heading.innerHTML = position;
assert_equals(el[possiblePositions[position]].nodeName, "H3");
assert_equals(el[possiblePositions[position]].firstChild.nodeType, Node.TEXT_NODE);
}, 'insertAdjacentHTML(' + position + ', ' + html + ' )');
});
</script>