https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 95fcc7595a9e0eaec42034d056cef4e2de04cfd1 authored by Sebastian Hengst on 11 April 2018, 09:29:31 UTC
Backed out changeset 0f81334efa0a (bug 1445883) for crashes (bug 1446902). a=backout
Tip revision: 95fcc75
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