From de127b7fb965c684ef2a61b5ead58992eb348a4c Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 20 Oct 2021 14:12:05 +0200 Subject: [PATCH] Expose everywhere Ref: https://github.com/tc39/proposal-shadowrealm/issues/331 --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index e6f9e11..c28d2e1 100644 --- a/index.html +++ b/index.html @@ -302,7 +302,7 @@

The PerformanceEntry interface

The PerformanceEntry interface hosts the performance data of various metrics.

-      [Exposed=(Window,Worker)]
+      [Exposed=*]
       interface PerformanceEntry {
         readonly    attribute DOMString           name;
         readonly    attribute DOMString           entryType;
@@ -376,7 +376,7 @@ 

The PerformanceObserver interface

callback PerformanceObserverCallback = undefined (PerformanceObserverEntryList entries, PerformanceObserver observer, optional PerformanceObserverCallbackOptions options = {}); - [Exposed=(Window,Worker)] + [Exposed=*] interface PerformanceObserver { constructor(PerformanceObserverCallback callback); undefined observe (optional PerformanceObserverInit options = {}); @@ -582,7 +582,7 @@

PerformanceObserverInit dictionary

"PerformanceObserverEntryList">

PerformanceObserverEntryList interface

-          [Exposed=(Window,Worker)]
+          [Exposed=*]
           interface PerformanceObserverEntryList {
             PerformanceEntryList getEntries();
             PerformanceEntryList getEntriesByType (DOMString type);