blob: 103041a0b412724a9b09ed7bc6693db41f199e3e [file] [log] [blame]
<!DOCTYPE html>
<title>Feature-Policy Fullscreen Relocated</title>
<script>
window.onload = function () {
document.location = "http://localhost:8000/feature-policy/resources/feature-policy-fullscreen.html";
return new Promise(function(resolve, reject) {
window.addEventListener('message', function(e) {
resolve(e.data);
}, { once: true });
}).then(function(data) {
parent.postMessage(data, '*');
});
}
</script>