4 <script src=
"/js-test-resources/js-test.js"></script>
6 description("Test navigator.sendBeacon() restrictions on (accumulated) transmission length.");
8 var payload
= new Uint32Array(1000);
10 function testAllowance() {
11 for (var i
= 0 ; result
&& i
< 100; i
++)
12 result
= navigator
.sendBeacon("resources/blank.txt", payload
);
13 shouldBeFalse('result');
17 if (window
.testRunner
) {
18 testRunner
.dumpAsText();