OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <script> | |
3 function handler(event) { | |
4 window.top.postMessage(event.sourceCapabilities.customProperty, "*"); | |
5 } | |
6 | |
7 function runTest() { | |
8 document.querySelector("button").click(); | |
9 } | |
10 | |
11 window.onload = function () { | |
12 setTimeout(runTest, 1000); | |
13 window.top.postMessage("start", "*"); | |
14 } | |
15 </script> | |
16 <button onclick="handler(event)"></button> | |
OLD | NEW |