Skip to content

Commit

Permalink
Expose everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger committed Oct 20, 2021
1 parent 7729770 commit de127b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ <h2>The <dfn>PerformanceEntry</dfn> interface</h2>
<p>The <a>PerformanceEntry</a> interface hosts the performance data of
various metrics.</p>
<pre class='idl'>
[Exposed=(Window,Worker)]
[Exposed=*]
interface PerformanceEntry {
readonly attribute DOMString name;
readonly attribute DOMString entryType;
Expand Down Expand Up @@ -376,7 +376,7 @@ <h2>The <dfn>PerformanceObserver</dfn> interface</h2>
callback PerformanceObserverCallback = undefined (PerformanceObserverEntryList entries,
PerformanceObserver observer,
optional PerformanceObserverCallbackOptions options = {});
[Exposed=(Window,Worker)]
[Exposed=*]
interface PerformanceObserver {
constructor(PerformanceObserverCallback callback);
undefined observe (optional PerformanceObserverInit options = {});
Expand Down Expand Up @@ -582,7 +582,7 @@ <h2><dfn>PerformanceObserverInit</dfn> dictionary</h2>
"PerformanceObserverEntryList">
<h2><dfn>PerformanceObserverEntryList</dfn> interface</h2>
<pre class="idl">
[Exposed=(Window,Worker)]
[Exposed=*]
interface PerformanceObserverEntryList {
PerformanceEntryList getEntries();
PerformanceEntryList getEntriesByType (DOMString type);
Expand Down

0 comments on commit de127b7

Please sign in to comment.