https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0b3aff1e3e53e44fc7644d56c2e77be24e75f9c1 authored by chrishtr@chromium.org on 09 July 2017, 05:13:10 UTC
Don't perform forced style or layout updates in Document::implicitClose
Tip revision: 0b3aff1
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