blob: 100756626987a95b242214a47704e87d5d7c2dc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html id='innerFrameDocument'>
<style>
body {
touch-action:none;
}
</style>
<body id='innerFrame' style='height:500px; width: 500px; padding: 0; margin: 0;'>
<script>
top.document.testEventList.forEach(function(eventName) {
document.addEventListener(eventName, top.handleEvent);
});
</script>
</body>
</html>
|