mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-29 22:42:52 +00:00
LibWeb: Create XMLDocuments in DOMImplementation.createDocument
This commit is contained in:
parent
36c145b197
commit
cd156bad6b
Notes:
sideshowbarker
2024-07-16 17:05:37 +09:00
Author: https://github.com/shannonbooth
Commit: cd156bad6b
Pull-request: https://github.com/SerenityOS/serenity/pull/22567
Reviewed-by: https://github.com/awesomekling
3 changed files with 11 additions and 3 deletions
|
@ -0,0 +1,7 @@
|
|||
<script src="../include.js"></script>
|
||||
<script>
|
||||
test(() => {
|
||||
const xmlDoc = document.implementation.createDocument(null, "books");
|
||||
println(xmlDoc.constructor.name);
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue