summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/resources/get-nested-configs-inner.html
blob: 122debfe27f41e661b3f13808e6b1a3157a28281 (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<script src="utils.js"></script>
<title>Send the results of getNestedConfigs() to the embedder</title>
<script>
const [key] = parseKeylist();
const configs = window.fence.getNestedConfigs();
const data_to_send = [configs.length];
writeValueToServer(key, data_to_send.join(","));
</script>
</html>