Update web-platform-tests to revision 6087baf4a83e7953112242be9fd6e719797ebdf6

This commit is contained in:
WPT Sync Bot 2018-12-07 20:30:51 -05:00
parent 3c19cd49ec
commit 6c2d26eb4b
76 changed files with 3020 additions and 345 deletions

View file

@ -3,16 +3,19 @@
// (https://github.com/tidoust/reffy-reports)
// Source: Event Timing API (https://wicg.github.io/event-timing/)
[Exposed=Window]
interface PerformanceEventTiming : PerformanceEntry {
readonly attribute DOMHighResTimeStamp processingStart;
readonly attribute DOMHighResTimeStamp processingEnd;
readonly attribute boolean cancelable;
};
[Exposed=Window]
interface EventCounts {
readonly maplike<DOMString, unsigned long>;
};
[Exposed=Window]
partial interface Performance {
readonly attribute EventCounts eventCounts;
[SameObject] readonly attribute EventCounts eventCounts;
};