summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/eventsource/format-field-retry-bogus.any.js
blob: 86d9b9ea4090d6cb4c92cc0184dfddc3f7fcd19c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// META: title=EventSource: "retry" field (bogus)
      var test = async_test()
      test.step(function() {
        var timeoutms = 3000,
            source = new EventSource("resources/message.py?message=retry%3A3000%0Aretry%3A1000x%0Adata%3Ax"),
            opened = 0
        source.onopen = function() {
          test.step(function() {
            if(opened == 0)
              opened = new Date().getTime()
            else {
              var diff = (new Date().getTime()) - opened
              assert_true(Math.abs(1 - diff / timeoutms) < 0.25) // allow 25% difference
              this.close();
              test.done()
            }
          }, this)
        }
      })