summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug1037687_subframe.html
blob: 4258f772b6775f3f83cbd483fd34fe599dedb87a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript">
  var SimpleTest = window.parent.SimpleTest;
  var ok = window.parent.ok;
  var is = window.parent.is;

  var host;
  var embed;
  var object;
  var iframe;
  var resourceLoadCount = 0;

  function resourceLoaded(event) {
    ++resourceLoadCount;
    ok(true, event.target + " got " + event.load);
    if (resourceLoadCount == 3) {
      SimpleTest.finish();
    }
  }

  function createResource(sr, type) {
    var el = document.createElement(type);
    var attrName = type == "object" ? "data" : "src";
    el.setAttribute(attrName, "file_mozfiledataurl_img.jpg");
    el.onload = resourceLoaded;
    var info = document.createElement("div");
    info.textContent = type;
    sr.appendChild(info);
    sr.appendChild(el);
  }

  function test() {
    host = document.getElementById("host");
    let sr = host.attachShadow({mode: 'open'});
    embed = createResource(sr, "embed");
    object = createResource(sr, "object");
    iframe = createResource(sr, "iframe");
  }
</script>
</head>
<body onload="test()">
<div id="host"></div>
</body>
</html>