mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-13 04:21:54 +00:00
10 lines
300 B
HTML
10 lines
300 B
HTML
<!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>
|