https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 709a9f22fc786f9097802ef943478e2362c55300 authored by Jonathon Kereliuk on 20 March 2018, 17:38:10 UTC
update docs
Tip revision: 709a9f2
support-window-open.html
<!DOCTYPE HTML>
<meta charset="utf-8">
<script>
var data = [
    navigator === window.opener.navigator,
    navigator.getBattery() === window.opener.navigator.getBattery(),
    navigator.getBattery() === navigator.getBattery()
];
window.opener.postMessage(data, '*');
</script>
back to top