Commit 67d759c6 authored by Nicolás Peña Moreno's avatar Nicolás Peña Moreno Committed by Commit Bot

[EventTiming] Ship Event Timing API

Intent to Ship:
https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/1UQqjz1CR-k

Bug: 543598
Change-Id: I2f878bdfb2e5390754b89ef7fa61f4213e679003
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2216652Reviewed-by: default avatarYoav Weiss <yoavweiss@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Cr-Commit-Position: refs/heads/master@{#773176}
parent 8be8d110
...@@ -684,7 +684,7 @@ ...@@ -684,7 +684,7 @@
}, },
{ {
name: "EventTiming", name: "EventTiming",
status: "experimental", status: "stable",
}, },
{ {
name: "ExecCommandInJavaScript", name: "ExecCommandInJavaScript",
......
...@@ -6,6 +6,13 @@ window.performance.clearMarks [function] ...@@ -6,6 +6,13 @@ window.performance.clearMarks [function]
window.performance.clearMeasures [function] window.performance.clearMeasures [function]
window.performance.clearResourceTimings [function] window.performance.clearResourceTimings [function]
window.performance.dispatchEvent [function] window.performance.dispatchEvent [function]
window.performance.eventCounts [object EventCounts]
window.performance.eventCounts.entries [function]
window.performance.eventCounts.forEach [function]
window.performance.eventCounts.get [function]
window.performance.eventCounts.has [function]
window.performance.eventCounts.keys [function]
window.performance.eventCounts.values [function]
window.performance.getEntries [function] window.performance.getEntries [function]
window.performance.getEntriesByName [function] window.performance.getEntriesByName [function]
window.performance.getEntriesByType [function] window.performance.getEntriesByType [function]
......
...@@ -1983,6 +1983,17 @@ interface Event ...@@ -1983,6 +1983,17 @@ interface Event
method stopPropagation method stopPropagation
setter cancelBubble setter cancelBubble
setter returnValue setter returnValue
interface EventCounts
attribute @@toStringTag
getter size
method @@iterator
method constructor
method entries
method forEach
method get
method has
method keys
method values
interface EventSource : EventTarget interface EventSource : EventTarget
attribute @@toStringTag attribute @@toStringTag
attribute CLOSED attribute CLOSED
...@@ -4977,6 +4988,7 @@ interface PaymentResponse : EventTarget ...@@ -4977,6 +4988,7 @@ interface PaymentResponse : EventTarget
setter onpayerdetailchange setter onpayerdetailchange
interface Performance : EventTarget interface Performance : EventTarget
attribute @@toStringTag attribute @@toStringTag
getter eventCounts
getter memory getter memory
getter navigation getter navigation
getter onresourcetimingbufferfull getter onresourcetimingbufferfull
...@@ -5021,6 +5033,7 @@ interface PerformanceEventTiming : PerformanceEntry ...@@ -5021,6 +5033,7 @@ interface PerformanceEventTiming : PerformanceEntry
getter cancelable getter cancelable
getter processingEnd getter processingEnd
getter processingStart getter processingStart
getter target
method constructor method constructor
method toJSON method toJSON
interface PerformanceLongTaskTiming : PerformanceEntry interface PerformanceLongTaskTiming : PerformanceEntry
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment