Update web-platform-tests to revision 388ba3a049a3473b1945b9f8f81e9d6e342a249e

This commit is contained in:
WPT Sync Bot 2019-01-24 20:55:37 -05:00
parent 43e21dc845
commit bdaf11b099
139 changed files with 3089 additions and 807 deletions

View file

@ -0,0 +1,3 @@
CACHE MANIFEST
# iframe_with_appcache_manifest.html references this manifest to get cached in
# AppCache.

View file

@ -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>