summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_script_module_frames_dynamic.html
blob: 9f07e094fa916125f945a33326bb3c0491b28d7f (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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Test module script bytecode across iframe</title>
  <script type="text/javascript">
var loadFramePromiseResolve;
var loadFramePromise = new Promise(r => {
  loadFramePromiseResolve = r;
});
function onLoadFrameLoaded() {
  loadFramePromiseResolve();
}
  </script>
</head>
<body>
  <iframe id="save" name="save"
          src="file_script_module_frames_dynamic_save.html"
          width="50" height="50"></iframe>
  <iframe id="load" name="load" onload="onLoadFrameLoaded()"
          src="file_script_module_frames_dynamic_load.html"
          width="50" height="50"></iframe>
</body>
</html>