mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-27 18:40:00 +00:00
9 lines
345 B
HTML
9 lines
345 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const xmlDocument = new DOMParser().parseFromString(`<xml></xml>`, "application/xml");
|
|
const cdata = xmlDocument.createCDATASection("PASS");
|
|
const clone = cdata.cloneNode();
|
|
println(`Cloned CDATASection node data: ${clone.data}`);
|
|
});
|
|
</script>
|