https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 6ca17163b9aa8686ac55fba28855b4a11252d261 authored by plehegar on 21 January 2016, 21:56:37 UTC
Sync'ed the IDL with latest hr-time (except for translateTime)
Tip revision: 6ca1716
format-field-retry-empty.htm
<!doctype html>
<html>
  <head>
    <title>EventSource: empty retry field</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?message=retry%0Adata%3Atest")
        source.onmessage = function(e) {
          test.step(function() {
            assert_equals("test", e.data)
            source.close()
          })
          test.done()
        }
      })
    </script>
  </body>
</html>

back to top