summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/execution-timing/pages/helloworld.html
blob: 271bc8f569e51799ffdac9f36cc4eb6e8c9f2fd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html><head>
  <title> TC component </title>
</head>
<body>

  <p>This page should appear in popup or frame</p>

  <script type="text/javascript">
  var target = top || opener;
  var id = location.search?' '+parseInt(location.search.substring(1)) : '';
  target.log('frame/popup script'+id);
  </script>

</body></html>