mirror of
https://github.com/servo/servo.git
synced 2025-07-02 21:13:39 +01:00
6 lines
148 B
HTML
6 lines
148 B
HTML
<!doctype html>
|
|
Image dynamic remove
|
|
<img src=400x400_green.png>
|
|
<script>
|
|
document.getElementsByTagName("img")[0].removeAttribute("src");
|
|
</script>
|