mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
11 lines
349 B
HTML
11 lines
349 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const xmlDocument = new DOMParser().parseFromString(`<xml></xml>`, "application/xml");
|
|
const cdata = xmlDocument.createCDATASection("Test CDATA");
|
|
const assignedSlot = cdata.assignedSlot;
|
|
println("PASS (didn't crash)")
|
|
});
|
|
</script>
|