Browse Source

* Correct performance external declaration

Michaël Van Canneyt 3 months ago
parent
commit
82361ed25d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl/src/weborworker.pas

+ 1 - 1
packages/rtl/src/weborworker.pas

@@ -1425,7 +1425,7 @@ type
     FisSecureContext : boolean; external name 'isSecureContext';
     FIDBFactory : TJSIDBFactory; external name 'indexedDB';
     fcaches : TJSCacheStorage; external name 'caches';
-    FPerformance : TJSPerformance; external name 'performanc';
+    FPerformance : TJSPerformance; external name 'performance';
   Public
     Function setInterval(ahandler : TJSTimerCallBack; aInterval : NativeUInt) : NativeInt; varargs;
     Function setTimeout(ahandler : TJSTimerCallBack; aTimeout : NativeUInt) : NativeInt; varargs;