mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 10:20:22 +00:00
8 lines
281 B
HTML
8 lines
281 B
HTML
<!DOCTYPE html>
|
|
<input type="text" src="../../Assets/120.png" width="120" height="120" />
|
|
<script type="text/javascript">
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
let input = document.querySelector("input");
|
|
input.type = "image";
|
|
});
|
|
</script>
|