Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255

This commit is contained in:
James Graham 2015-03-27 09:15:38 +00:00
parent b2a5225831
commit 1a81b18b9f
12321 changed files with 544385 additions and 6 deletions

View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<title>Service Workers: event.replace()</title>
<head>
<link rel="help" href="https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#replace-method">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<!--
`replace()` interacts with `waitUntil` method in the following way:
- Successful installation can be delayed by `waitUntil`, perhaps by
subsequent event handlers.
- Replacement only happens upon successful installation
- Therefore, replacement of the [active worker][1] (if any) is not
immediate, however it may occur as soon as the end of the current turn.
[1]: #navigator-service-worker-active
-->
<script>
test(function() {
// not_implemented();
}, "There are no tests for section event.replace() so far.");
</script>
</body>
</html>