summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1449601.html
blob: 7dcd22706d21ae359de4d7975039ad1402a093b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
  <body>
    <script>
      var blob = new Blob(["foo"], { type: "text/plain" });
      var url = URL.createObjectURL(blob);
      var ifr = document.createElement("iframe");
      ifr.src = url;
      document.body.appendChild(ifr);

      onload = function() {
        try { window.find('foo',false,true,true,true,true) } catch(e) { }
      }
    </script>
  </body>
</html>