ladybird/Tests/LibWeb/Text/input/DOM/CDATASection-assignedSlot.html

11 lines
349 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!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>