blob: 643ea48a7630b0f2ba61bc4383207901e1d67be0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="utils.js"></script>
<title>Test that a fenced frame successfully loaded.</title>
<body>
<script>
// This file is meant to run in a <fencedframe>. It reports back to the
// outermost page to confirm that loading succeeded.
const [navigation_key, navigation_ack_key] = parseKeylist();
writeValueToServer(navigation_key, "pass");
</script>
</body>
|