https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ef805cb3832c2deaf1ab8fc4f3353b65671e6f32 authored by Anthony Ramine on 13 March 2018, 19:31:50 UTC
Remove HTMLIFrameElement.allowvr test
Tip revision: ef805cb
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