blob: d2396a5c5f93dd69b12df737464101b46dd3f4f0 [file] [log] [blame] [edit]
<html>
<body>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
promise_test(() => {
const url = window.location.href + "?test";
fetch(url, { integrity: "A" });
new EventSource(url);
return new Promise(resolve => setTimeout(resolve, 50));
}, "ensure event source do not reuse memory cache");
</script>
</body>
</html>