https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ae999f1c2fe70a3195d00d214002242227b63b62 authored by Luke Bjerring on 16 May 2018, 02:06:44 UTC
Fix nits as per review
Tip revision: ae999f1
service_worker_idl.html
<!DOCTYPE html>
<head>
    <meta charset='utf-8' />
    <script src="/resources/testharness.js"></script>
    <script src='/resources/testharnessreport.js'></script>
    <script>
      (async () => {
        const scope = 'does/not/exist'

        let registration = await navigator.serviceWorker.getRegistration(scope)
        if (registration)
          await registration.unregister()
        registration = await navigator.serviceWorker.register('./sw.js', {scope})

        fetch_tests_from_worker(registration.installing)
      })()
    </script>
</head>
back to top