Revision 65e0628ee53f311f25f50990f4e7b35ba67b06a0 authored by Henrik Skupin on 28 April 2018, 19:36:03 UTC, committed by moz-wptsync-bot on 28 April 2018, 19:48:02 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1457089
gecko-commit: 9d124f189e612ef45f466456934ccc1b1a4ff824
gecko-integration-branch: central
gecko-reviewers: jgraham
1 parent 0027df2
Raw File
battery-iframe.https.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>Battery Test: navigator.getBattery() is not allowed in non top-level browsing context</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="https://www.w3.org/TR/battery-status/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<iframe id="blank" src="about:blank" style="display: none"></iframe>
<script>

function load_iframe(iframe, src) {
  return new Promise((resolve, reject) => {
    iframe.onload = () => resolve(iframe);
    iframe.src = src;
  });
}

promise_test(t => {
  var iframe = document.getElementById('blank');
  var src = 'support-iframe.html';
  return load_iframe(iframe, src)
    .then(iframe => promise_rejects(t, 'SecurityError',
                                    iframe.contentWindow.navigator.getBattery()));
}, "throw a 'SecurityError' when invoking navigator.getBattery() within iframe");

</script>
back to top