1
0
Fork 0
firefox/testing/web-platform/tests/eventsource/format-field-retry.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
748 B
JavaScript

// META: title=EventSource: "retry" field
var test = async_test();
test.step(function() {
var timeoutms = 3000,
timeoutstr = "03000", // 1536 in octal, but should be 3000
source = new EventSource("resources/message.py?message=retry%3A" + timeoutstr + "%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)
}
})