ladybird/Tests/LibWeb/Text/input/idl-handling-of-null-attribute.html

11 lines
300 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!DOCTYPE html>
<script src="include.js"></script>
<script id="script-element">
test(() => {
let s = document.getElementById("script-element");
println(`initial type = '${s.type}'`);
s.type = null;
println(`after setting to null = '${s.type}'`);
});
</script>