mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 17:21:02 +00:00
12 lines
314 B
HTML
12 lines
314 B
HTML
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
var button = document.createElement('button');
|
||
|
|
println(button.type);
|
||
|
|
button.setAttribute("type", "button");
|
||
|
|
println(button.type);
|
||
|
|
button.removeAttribute("type");
|
||
|
|
println(button.type);
|
||
|
|
});
|
||
|
|
</script>
|