Skip to content

Commit ef65cde

Browse files
authored
Expose everywhere (#193)
Ref: tc39/proposal-shadowrealm#331
1 parent ca6936d commit ef65cde

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
@@ -302,7 +302,7 @@ <h2>The <dfn>PerformanceEntry</dfn> interface</h2>
302302
<p>The <a>PerformanceEntry</a> interface hosts the performance data of
303303
various metrics.</p>
304304
<pre class='idl'>
305-
[Exposed=(Window,Worker)]
305+
[Exposed=*]
306306
interface PerformanceEntry {
307307
readonly attribute DOMString name;
308308
readonly attribute DOMString entryType;
@@ -376,7 +376,7 @@ <h2>The <dfn>PerformanceObserver</dfn> interface</h2>
376376
callback PerformanceObserverCallback = undefined (PerformanceObserverEntryList entries,
377377
PerformanceObserver observer,
378378
optional PerformanceObserverCallbackOptions options = {});
379-
[Exposed=(Window,Worker)]
379+
[Exposed=*]
380380
interface PerformanceObserver {
381381
constructor(PerformanceObserverCallback callback);
382382
undefined observe (optional PerformanceObserverInit options = {});
@@ -582,7 +582,7 @@ <h2><dfn>PerformanceObserverInit</dfn> dictionary</h2>
582582
"PerformanceObserverEntryList">
583583
<h2><dfn>PerformanceObserverEntryList</dfn> interface</h2>
584584
<pre class="idl">
585-
[Exposed=(Window,Worker)]
585+
[Exposed=*]
586586
interface PerformanceObserverEntryList {
587587
PerformanceEntryList getEntries();
588588
PerformanceEntryList getEntriesByType (DOMString type);

0 commit comments

Comments
 (0)