mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 17:51:03 +00:00
10 lines
345 B
HTML
10 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>
|