diff options
Diffstat (limited to 'testing/web-platform/tests/fenced-frame/resources/get-nested-configs-inner.html')
-rw-r--r-- | testing/web-platform/tests/fenced-frame/resources/get-nested-configs-inner.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fenced-frame/resources/get-nested-configs-inner.html b/testing/web-platform/tests/fenced-frame/resources/get-nested-configs-inner.html new file mode 100644 index 0000000000..a83ba93aa6 --- /dev/null +++ b/testing/web-platform/tests/fenced-frame/resources/get-nested-configs-inner.html @@ -0,0 +1,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, configs.length > 0 ? configs[0].url : "N/a"]; +writeValueToServer(key, data_to_send.join(",")); +</script> +</html> |