mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 18:04:59 +00:00
8 lines
238 B
HTML
8 lines
238 B
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>
|