summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/files/file-reader-abort-gc.html
blob: bebdaec60731181ceca432923af3936bce3fc859 (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
<script>
var reader = new FileReader();
gc();
reader.readAsText(new Blob());
reader.abort();
</script>
<p>TEST PASS if it didn't crash.</p>