summaryrefslogtreecommitdiffstats
path: root/image/test/crashtests/1676172-1-iframe.html
blob: c989c579bb417785c4aea53084552dde7cc24670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
<head>
    <script>
      document.addEventListener('DOMContentLoaded', () => {
        const image = document.createElementNS('http://www.w3.org/1999/xhtml', 'img')
        var extra = document.location.search.substr(1);
        image.setAttribute('src', '1676172-1.gif' + '?' + extra)
        document.documentElement.appendChild(image)
        setTimeout('location.reload()', 400)
      })
    </script>
</head>
</html>