mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
9 lines
254 B
HTML
9 lines
254 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const parser = new DOMParser();
|
|
const xmlDoc = parser.parseFromString('<svg></svg>', "text/xml");
|
|
println(xmlDoc.constructor.name);
|
|
});
|
|
</script>
|