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

Side by Side Diff: third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.idl

Issue 2472583003: Navigation Timing Level 2 (Closed)
Patch Set: fixed layout tests failure Created 4 years 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // https://w3c.github.io/navigation-timing/#sec-PerformanceNavigationTiming
6
7 enum NavigationType {
8 "navigate",
9 "reload",
10 "back_forward",
11 "prerender"
12 };
13 [
14 RuntimeEnabled=PerformanceNavigationTiming2,
15 ] interface PerformanceNavigationTiming : PerformanceResourceTiming {
16 readonly attribute DOMHighResTimeStamp unloadEventStart;
17 readonly attribute DOMHighResTimeStamp unloadEventEnd;
18 readonly attribute DOMHighResTimeStamp domInteractive;
19 readonly attribute DOMHighResTimeStamp domContentLoadedEventStart;
20 readonly attribute DOMHighResTimeStamp domContentLoadedEventEnd;
21 readonly attribute DOMHighResTimeStamp domComplete;
22 readonly attribute DOMHighResTimeStamp loadEventStart;
23 readonly attribute DOMHighResTimeStamp loadEventEnd;
24 readonly attribute NavigationType type;
25 readonly attribute unsigned short redirectCount;
26 serializer = {inherit, attribute};
27 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698