https://github.com/web-platform-tests/wpt
Raw File
Tip revision: bbafe29f8fadc182931b0c87daac2a215d49bd64 authored by Dong-hee Na on 10 October 2018, 07:29:59 UTC
HTML parser: Fix parser to close the p tag
Tip revision: bbafe29
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