Skip to content

Commit 191e64c

Browse files
authored
Merge pull request #200 from w3c/revert-193-expose-everywhere
Revert "Expose everywhere"
2 parents d142916 + 519251e commit 191e64c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ <h2>The <dfn>PerformanceEntry</dfn> interface</h2>
300300
<p>The <a>PerformanceEntry</a> interface hosts the performance data of
301301
various metrics.</p>
302302
<pre class='idl'>
303-
[Exposed=*]
303+
[Exposed=(Window,Worker)]
304304
interface PerformanceEntry {
305305
readonly attribute DOMString name;
306306
readonly attribute DOMString entryType;
@@ -374,7 +374,7 @@ <h2>The <dfn>PerformanceObserver</dfn> interface</h2>
374374
callback PerformanceObserverCallback = undefined (PerformanceObserverEntryList entries,
375375
PerformanceObserver observer,
376376
optional PerformanceObserverCallbackOptions options = {});
377-
[Exposed=*]
377+
[Exposed=(Window,Worker)]
378378
interface PerformanceObserver {
379379
constructor(PerformanceObserverCallback callback);
380380
undefined observe (optional PerformanceObserverInit options = {});
@@ -580,7 +580,7 @@ <h2><dfn>PerformanceObserverInit</dfn> dictionary</h2>
580580
"PerformanceObserverEntryList">
581581
<h2><dfn>PerformanceObserverEntryList</dfn> interface</h2>
582582
<pre class="idl">
583-
[Exposed=*]
583+
[Exposed=(Window,Worker)]
584584
interface PerformanceObserverEntryList {
585585
PerformanceEntryList getEntries();
586586
PerformanceEntryList getEntriesByType (DOMString type);

0 commit comments

Comments
 (0)