mirror of
https://github.com/servo/servo
synced 2026-05-13 10:27:03 +02:00
9 lines
239 B
HTML
9 lines
239 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<script src="/common/utils.js"></script>
|
|
<script>
|
|
// Cycle collection test for a case where the Request object is alive and accessible globally.
|
|
var req = new Request(`/`);
|
|
fetch(req)
|
|
</script>
|