https://github.com/web-platform-tests/wpt
Raw File
Tip revision: eac64242d8fcfad1e7269e9db4bbd1be879f838d authored by Luke Bjerring on 05 April 2018, 15:54:05 UTC
Fix service-worker window test
Tip revision: eac6424
nav2_data_uri.html
<!DOCTYPE html>
<title>data URL source for navigation-timing/nav2_test_open_data_uri.html</title>
<!-- NB: this file isn't actually used any where! -->
<link rel="author" title="Google" href="http://www.google.com/" />
<script>
var observer = new PerformanceObserver(
    function (entryList) {
        parent.postMessage("observed", "*");
        observer.disconnect();
    });
observer.observe({entryTypes: ["navigation"]});
</script>
back to top