mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
Tests/LibWeb: Move existing Fetch tests in under the Fetch folder
This commit is contained in:
parent
b8fa572c67
commit
92f6336fe8
Notes:
github-actions[bot]
2024-07-23 07:03:29 +00:00
Author: https://github.com/kennethmyhra
Commit: 92f6336fe8
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/763
6 changed files with 3 additions and 3 deletions
|
@ -0,0 +1,16 @@
|
|||
<script src="../include.js"></script>
|
||||
<script type="text/javascript">
|
||||
asyncTest(async done => {
|
||||
const body = new URLSearchParams();
|
||||
body.append("username", "buggie");
|
||||
body.append("password", "hunter2");
|
||||
|
||||
const request = new Request("fetch-url-search-params.html", {
|
||||
method: "POST",
|
||||
body: body,
|
||||
});
|
||||
|
||||
println(await request.text());
|
||||
done();
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue