summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/user-prompts/cannot-show-simple-dialogs/support/prompt.html
blob: db40774770cccae09644ae2b04cf8d89d3fc0d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
<script>
  function handleEvent(e) {
    var conf = window.prompt('Prompt Dialog');
    if (conf == null) {
      window.parent.postMessage('pass', '*');
    } else {
      window.parent.postMessage('fail', '*');
    }
  }
  window.addEventListener('message', handleEvent);
</script>