ladybird/Tests/LibWeb/Text/input/link-element-onload-attribute.html

12 lines
377 B
HTML
Raw Normal View History

<script src="include.js"></script>
<script>
test(() => {
let link = document.createElement("link");
link.setAttribute("rel", "preload");
link.setAttribute("href", "valid.css");
link.setAttribute("as", "style");
link.setAttribute("onload", "println('link element onload')");
document.head.appendChild(link);
});
</script>