From 53955abd34dbf5189db5d901f7be4e007c76812e Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 20 Oct 2021 14:21:59 +0200 Subject: [PATCH] Expose everywhere Ref: https://github.com/tc39/proposal-shadowrealm/issues/331 --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 05f02f9..4648e5a 100644 --- a/index.html +++ b/index.html @@ -297,7 +297,7 @@

clearMeasures() method

The PerformanceMark Interface

The PerformanceMark interface also exposes marks created via the {{Performance}} interface's {{Performance/mark()}} method to the Performance Timeline.

-        [Exposed=(Window,Worker)]
+        [Exposed=*]
         interface PerformanceMark : PerformanceEntry {
           constructor(DOMString markName, optional PerformanceMarkOptions markOptions = {});
           readonly attribute any detail;
@@ -347,7 +347,7 @@ 

The PerformanceMark Constructor

The PerformanceMeasure Interface

The PerformanceMeasure interface also exposes measures created via the {{Performance}} interface's {{Performance/measure()}} method to the Performance Timeline.

-        [Exposed=(Window,Worker)]
+        [Exposed=*]
         interface PerformanceMeasure : PerformanceEntry {
           readonly attribute any detail;
         };