LibWeb: Create XMLDocuments in DOMImplementation.createDocument

This commit is contained in:
Shannon Booth 2024-01-04 12:36:11 +13:00 committed by Andreas Kling
parent 36c145b197
commit cd156bad6b
Notes: sideshowbarker 2024-07-16 17:05:37 +09:00
3 changed files with 11 additions and 3 deletions

View file

@ -0,0 +1,7 @@
<script src="../include.js"></script>
<script>
test(() => {
const xmlDoc = document.implementation.createDocument(null, "books");
println(xmlDoc.constructor.name);
});
</script>