https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7457fc57ae99a63460064a8c0fe67e68f9094adc authored by James Graham on 13 January 2014, 15:18:18 UTC
Move config file to config.default.json and allow creation of a config.json file to override specific settings
Tip revision: 7457fc5
format-bom-2.htm
<!DOCTYPE html>
<html>
  <head>
    <title>EventSource: Double 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%BF%EF%BB%BFdata%3A1%0A%0Adata%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_false(hasbeenone)
            assert_true(hasbeentwo)
            this.close()
            test.done()
          }
        }, this)
      }
    </script>
  </body>
</html>

back to top