mirror of
https://github.com/servo/servo.git
synced 2025-08-28 00:28:20 +01:00
Update web-platform-tests to revision 388ba3a049a3473b1945b9f8f81e9d6e342a249e
This commit is contained in:
parent
43e21dc845
commit
bdaf11b099
139 changed files with 3089 additions and 807 deletions
|
@ -0,0 +1,3 @@
|
|||
CACHE MANIFEST
|
||||
# iframe_with_appcache_manifest.html references this manifest to get cached in
|
||||
# AppCache.
|
|
@ -0,0 +1,17 @@
|
|||
<!doctype html>
|
||||
<html manifest="appcache.manifest">
|
||||
<title>Iframe that will be cached using application cache.</title>
|
||||
<meta charset='utf-8'>
|
||||
<link rel='author' href='jarrydg@chromium.org' title='Jarryd Goodman'>
|
||||
<script>
|
||||
(async () => {
|
||||
const initPromise = new Promise(resolve => {
|
||||
applicationCache.addEventListener('cached', resolve);
|
||||
applicationCache.addEventListener('noupdate', resolve);
|
||||
});
|
||||
await initPromise;
|
||||
|
||||
window.parent.postMessage('document cached');
|
||||
})();
|
||||
</script>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue