blob: 2906faa79c5d92f47c05abee896e68820e60550f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head>
<script>
window.onload = function(){
var frame = document.getElementById('test_iframe');
var win = frame.contentWindow;
frame.remove();
win.onvrdisplayactivate = function () {}
};
</script></head>
<body>
<iframe id="test_iframe"></iframe>
</body>
</html>
|