https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9173eefa06cd233ca087ac3337fb8e7361d660af authored by Denis Ah-Kang on 14 September 2015, 09:13:28 UTC
wbr ref test: specify font-size
Tip revision: 9173eef
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