mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 09:41:02 +00:00
11 lines
357 B
HTML
11 lines
357 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
// We need an actual XML document to test this.
|
||
|
|
const svgstr = `<svg xmlns="http://www.w3.org/2000/svg">PASS</svg>`;
|
||
|
|
const svg = new DOMParser().parseFromString(svgstr, "image/svg+xml").documentElement;
|
||
|
|
println(svg.innerHTML);
|
||
|
|
});
|
||
|
|
</script>
|