зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1649066 - Decrease size of body to POST. r=peterv
The smallest possible size that triggers the fission case is 1MB. Also removed an unneeded assertion expectation. Differential Revision: https://phabricator.services.mozilla.com/D81493
This commit is contained in:
Родитель
e8a7ef44ae
Коммит
5cf90877d3
|
@ -15,11 +15,6 @@
|
|||
</form>
|
||||
<script>
|
||||
"use strict";
|
||||
// For some reason this triggers the (harmless) assert at
|
||||
// https://searchfox.org/mozilla-central/source/layout/generic/nsLineLayout.cpp#958
|
||||
// See bug 1645132.
|
||||
|
||||
SimpleTest.expectAssertions(1)
|
||||
|
||||
const CROSS_ORIGIN_URI = "http://test1.example.com/tests/docshell/test/mochitest/ping.html";
|
||||
|
||||
|
@ -64,7 +59,7 @@
|
|||
let form = document.getElementById('form');
|
||||
let button = document.getElementById('button');
|
||||
|
||||
document.getElementById('input').value = generateBody(1014*1024*10);
|
||||
document.getElementById('input').value = generateBody(1024*1024);
|
||||
let token = document.getElementById('token');
|
||||
token.value = "first";
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче