https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ffd8b73499f6099fb269344d81208743d1b9f54c authored by Hallvord R. M. Steen on 25 February 2016, 15:23:24 UTC
Reordering asserts to make failures easier to debug
Tip revision: ffd8b73
format-bom.htm
<!DOCTYPE html>
<html>
  <head>
    <title>EventSource: BOM</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div id="log"></div>
    <script>
      var test = async_test(),
          hasbeenone = false,
          hasbeentwo = false
      test.step(function() {
        var source = new EventSource("resources/message.py?message=%EF%BB%BFdata%3A1%0A%0A%EF%BB%BFdata%3A2%0A%0Adata%3A3")
        source.addEventListener("message", listener, false)
      })
      function listener(e) {
        test.step(function() {
          if(e.data == "1")
            hasbeenone = true
          if(e.data == "2")
            hasbeentwo = true
          if(e.data == "3") {
            assert_true(hasbeenone)
            assert_false(hasbeentwo)
            this.close()
            test.done()
          }
        }, this)
      }
    </script>
  </body>
</html>

back to top