https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ed7b33566fde544671dbf1dda97757bbbc5d7d6c authored by Nicolas Pena on 12 April 2018, 19:56:32 UTC
Remove http/tests/w3c
Tip revision: ed7b335
eventsource-url.htm
<!DOCTYPE html>
<html>
  <head>
    <title>EventSource: url</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div id="log"></div>
    <script>
      test(function() {
        var url = "resources/message.py",
            source = new EventSource(url)
        assert_equals(source.url.substr(-(url.length)), url)
        source.close()
      })
    </script>
  </body>
</html>

back to top