mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
7 lines
148 B
HTML
7 lines
148 B
HTML
<!doctype html>
|
|
Image dynamic remove
|
|
<img src=400x400_green.png>
|
|
<script>
|
|
document.getElementsByTagName("img")[0].removeAttribute("src");
|
|
</script>
|