diff options
Diffstat (limited to 'testing/web-platform/tests/fenced-frame/battery_status.https.html')
-rw-r--r-- | testing/web-platform/tests/fenced-frame/battery_status.https.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fenced-frame/battery_status.https.html b/testing/web-platform/tests/fenced-frame/battery_status.https.html new file mode 100644 index 0000000000..d7e1dc0284 --- /dev/null +++ b/testing/web-platform/tests/fenced-frame/battery_status.https.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<title>Battery status API test</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/common/utils.js"></script> +<script src="resources/utils.js"></script> + +<body> +<script> +promise_test(async () => { + const uuid = token(); + const frame = attachFencedFrame( + generateURL(`resources/get_battery.html`, [uuid])); + const result = await nextValueFromServer(uuid); + assert_equals(result, "NotAllowedError", + "battery status API should cause exception"); +}, 'battery status should not be read in the fenced frame.'); +</script> +</body> |