mirror of
https://github.com/servo/servo.git
synced 2025-07-03 13:33:39 +01:00
29 lines
986 B
HTML
29 lines
986 B
HTML
<!doctype html>
|
|
<html>
|
|
<title>Quota Estimate: usage details reflect application cache changes.</title>
|
|
<meta charset='utf-8'>
|
|
<link rel='author' href='jarrydg@chromium.org' title='Jarryd Goodman'>
|
|
<script src='/resources/testharness.js'></script>
|
|
<script src='/resources/testharnessreport.js'></script>
|
|
<script src='../cookie-store/resources/helpers.js'></script>
|
|
<script>
|
|
'use strict';
|
|
|
|
promise_test(async t => {
|
|
let estimate = await navigator.storage.estimate();
|
|
|
|
const usageBeforeCreate = estimate.usageDetails.applicationCache || 0;
|
|
|
|
const iframe = await
|
|
createIframe('./resources/iframe_with_appcache_manifest.html', t);
|
|
await waitForMessage();
|
|
|
|
estimate = await navigator.storage.estimate();
|
|
assert_true('applicationCache' in estimate.usageDetails);
|
|
const usageAfterCreate = estimate.usageDetails.applicationCache;
|
|
|
|
assert_greater_than(
|
|
usageAfterCreate, usageBeforeCreate);
|
|
}, 'estimate() shows usage increase after app is cached');
|
|
</script>
|
|
</html>
|