Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/navigation-timing/nav2_test_attributes_exist.html

Issue 2429063002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming.
Patch Set: included changes for navigation timing Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Navigation Timing 2 WPT</title> 5 <title>Navigation Timing 2 WPT</title>
6 <link rel="author" title="Google" href="http://www.google.com/" /> 6 <link rel="author" title="Google" href="http://www.google.com/" />
7 <link rel="help" href="http://www.w3.org/TR/navigation-timing-2/#sec-Per formanceNavigationTiming"/> 7 <link rel="help" href="http://www.w3.org/TR/navigation-timing-2/#sec-Per formanceNavigationTiming"/>
8 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharness.js"></script>
9 <script src="/resources/testharnessreport.js"></script> 9 <script src="/resources/testharnessreport.js"></script>
10 </head> 10 </head>
(...skipping 13 matching lines...) Expand all
24 'domainLookupEnd', 24 'domainLookupEnd',
25 'domainLookupStart', 25 'domainLookupStart',
26 'duration', 26 'duration',
27 'encodedBodySize', 27 'encodedBodySize',
28 'entryType', 28 'entryType',
29 'fetchStart', 29 'fetchStart',
30 'initiatorType', 30 'initiatorType',
31 'loadEventEnd', 31 'loadEventEnd',
32 'loadEventStart', 32 'loadEventStart',
33 'name', 33 'name',
34 'nextHopProtocol',
34 'redirectCount', 35 'redirectCount',
35 'redirectEnd', 36 'redirectEnd',
36 'redirectStart', 37 'redirectStart',
37 'requestStart', 38 'requestStart',
38 'responseEnd', 39 'responseEnd',
39 'responseStart', 40 'responseStart',
40 'secureConnectionStart', 41 'secureConnectionStart',
41 'transferSize', 42 'transferSize',
42 'type', 43 'type',
43 'unloadEventEnd', 44 'unloadEventEnd',
(...skipping 13 matching lines...) Expand all
57 observer.disconnect(); 58 observer.disconnect();
58 t.done(); 59 t.done();
59 }) 60 })
60 ); 61 );
61 observer.observe({entryTypes: ["navigation"]}); 62 observer.observe({entryTypes: ["navigation"]});
62 63
63 }, "Performance navigation timing entries are observable."); 64 }, "Performance navigation timing entries are observable.");
64 </script> 65 </script>
65 </body> 66 </body>
66 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698