https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 41c3233ecf729b8a2f25f491d7a081063a3a0f80 authored by Geoffrey Sneddon on 13 March 2018, 18:19:53 UTC
Add an "Edit on GitHub" link to the docs
Tip revision: 41c3233
eventsource-onmessage.htm
<!DOCTYPE html>
<html>
  <head>
    <title>EventSource: onmessage</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div id="log"></div>
    <script>
      var test = async_test()
      test.step(function() {
        var source = new EventSource("resources/message.py")
        source.onmessage = function(e) {
          test.step(function() {
            assert_equals("data", e.data)
            source.close()
          })
          test.done()
        }
      })
    </script>
  </body>
</html>

back to top