(Web API > DOMImplementation)
https://developer.mozilla.org/ja/docs/Web/API/DOMImplementation/createHTMLDocument
createHTMLDocument()
createHTMLDocument(title)
DOMImplementation.createHTMLDocument() メソッドは、新しい HTML Document を作成する。
引数 title には、新しい HTML 文書に与えるタイトルを含む文字列を指定する(省略可)。
<!DOCTYPE html>
<html>
<body>
<script>
var htmlDocument = document.implementation.createHTMLDocument("SYNCER");
console.log(htmlDocument);
document.body.appendChild(new Text(htmlDocument));
</script>
</body>
</html>