26 lines
522 B
HTML
26 lines
522 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
function runTest(url, id, done) {
|
|
var child;
|
|
|
|
function onMessage(event) {
|
|
if (!event.data || event.data.type !== 'complete') {
|
|
return;
|
|
}
|
|
|
|
window.removeEventListener('message', onMessage);
|
|
child.close();
|
|
done(event.data);
|
|
}
|
|
window.addEventListener('message', onMessage);
|
|
|
|
window.child = child = window.open(url, id);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|