mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
17 lines
485 B
HTML
17 lines
485 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
var button = document.createElement('button');
|
|
println(button.type);
|
|
button.setAttribute("type", "button");
|
|
println(button.type);
|
|
button.setAttribute("type", "BUTTON");
|
|
println(button.type);
|
|
button.setAttribute("type", "invalid");
|
|
println(button.type);
|
|
button.removeAttribute("type");
|
|
println(button.type);
|
|
});
|
|
</script>
|