зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
253 B
HTML
15 строки
253 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head class="reftest-wait"></head>
|
||
|
<body>
|
||
|
<div><img src="" alt="ALT"></div>
|
||
|
<script>
|
||
|
var img = document.querySelector('img');
|
||
|
img.remove();
|
||
|
|
||
|
var div = document.querySelector('div');
|
||
|
div.appendChild(img);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|