blob: c072ae4f13d014ef3b210d566e7a45b76d2fcd45 [file] [log] [blame]
<!doctype html>
<script src = "/resources/testharness.js"></script>
<script src = "/resources/testharnessreport.js"></script>
<script>
promise_test(() => {
return fetch('/fetch/chromium/resources/mime-sniffing.php').then(res => {
return res.blob();
}).then(blob => {
assert_equals(blob.type, 'unknown/unknown');
});
}, 'Mime sniffing should not run.');
</script>