2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2024-03-23 12:46:08 -03:00
|
|
|
<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>
|