blob: c75122bb4602f31b45afab9753fa9558f7d85fd8 [file] [log] [blame]
<!doctype html>
<script>
function handler(event) {
window.top.postMessage(event.sourceCapabilities.customProperty, "*");
}
function runTest() {
document.querySelector("button").click();
}
window.onload = function () {
setTimeout(runTest, 1000);
window.top.postMessage("start", "*");
}
</script>
<button onclick="handler(event)"></button>