1
0
Fork 0
firefox/testing/web-platform/tests/xhr/send-sync-timeout.htm
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

29 lines
855 B
HTML

<!doctype html>
<html>
<head>
<title>XMLHttpRequest: timeout during sync send() should not run</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method"/>
</head>
<body>
<div id="log"></div>
<script>
var test = async_test(),
hasrun = false
test.step(function() {
client = new XMLHttpRequest()
client.open("GET", "folder.txt", false)
test.step_timeout(() => { hasrun = true }, 0)
client.onreadystatechange = function() {
test.step(function() {
assert_equals(client.readyState, 4)
assert_false(hasrun)
})
}
client.send(null)
test.done()
})
</script>
</body>
</html>