Revision dd623515aa0fa9a1fc7b60e38e7dc7ee459c7e0a authored by Kent Tamura on 16 March 2018, 05:45:42 UTC, committed by Blink WPT Bot on 16 March 2018, 05:55:34 UTC
HTMLTreeBuilderSimulator assumed only <foreignObject> as an HTML
integration point. This CL adds <annotation-xml>, <desc>, and SVG
<title>.

Bug: 805924
Change-Id: I6793d9163d4c6bc8bf0790415baedddaac7a1fc2
Reviewed-on: https://chromium-review.googlesource.com/964038
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kouhei Ueno <kouhei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#543634}
1 parent 2e8da45
Raw File
insert-adjacent.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>
back to top