mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
11 lines
296 B
HTML
11 lines
296 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const params = new URLSearchParams('key=value1+value2');
|
|
for (const [key, value] of params) {
|
|
println(`key '${key}'`);
|
|
println(`value '${value}'`);
|
|
}
|
|
});
|
|
</script>
|