1
    2
    3
    4
    5
    6
    7
    8

content / test / data / service_worker / disable_web_security_register.html [blame]

<!DOCTYPE html>
<body>
<script>
var scope = location.search.substring(1);
navigator.serviceWorker.register(scope + 'fetch_event_blob.js', {scope: scope})
  .then(_ => { document.title = "PASS"; });
</script>
</body>