https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 858dccf8a31476e97a978c4a433eb1766270ae8e authored by Anne van Kesteren on 15 October 2018, 09:37:30 UTC
no hex or oct digits
Tip revision: 858dccf
Promise-incumbent-global-subsubframe.sub.html
<!DOCTYPE html>
<script>
  document.domain = "{{host}}";
  onmessage = function (e) {
    parent.postMessage(
      {
        actual: e.origin,
        expected: "{{location[scheme]}}://{{domains[www1]}}:{{ports[http][0]}}",
        reason: "Incumbent should have been the caller of then()"
      },
      "*");
  }
</script>
back to top