summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/resources/sandboxed-features-inner.sub.html
blob: f3bcbc8ba18e40d8aadc4c11a4ab55f1490398cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="utils.js"></script>
<script src="sandboxed-features.js"></script>
<body>
<script>
(async () => {
  try {
    await {{GET[test_func]}}();
  } catch (e) {
    writeValueToServer('{{GET[key]}}', e.message);
    return;
  }
  writeValueToServer('{{GET[key]}}', 'done');
})()
</script>
</body>