From d520799a761e18198236b4a45dd518041b35cfc9 Mon Sep 17 00:00:00 2001 From: autokagami Date: Tue, 24 Sep 2019 14:01:12 +0900 Subject: [PATCH] [user-timing-2] Align with Web IDL specification --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index d6d53cb..a242e18 100644 --- a/index.html +++ b/index.html @@ -296,11 +296,11 @@

clearMeasures() method

The PerformanceMark Interface

The PerformanceMark interface also exposes marks created via the performance.mark method to the Performance Timeline.

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

The PerformanceMark interface extends the following attributes of the {{PerformanceEntry}} interface: