diff --git a/package.json b/package.json index 87add5850..5a0ef76bc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "testcafe-hammerhead", "description": "A powerful web-proxy used as a core for the TestCafe testing framework (https://github.com/DevExpress/testcafe).", - "version": "28.3.0", + "version": "28.3.1", "homepage": "https://github.com/DevExpress/testcafe-hammerhead", "bugs": { "url": "https://github.com/DevExpress/testcafe-hammerhead/issues" diff --git a/src/client/sandbox/native-methods.ts b/src/client/sandbox/native-methods.ts index 495142f33..67ab343a0 100644 --- a/src/client/sandbox/native-methods.ts +++ b/src/client/sandbox/native-methods.ts @@ -377,6 +377,7 @@ class NativeMethods { Function: any; Error: any; functionToString: Function; + functionBind: Function; FontFace: any; StorageEvent: typeof StorageEvent; MutationObserver: any; @@ -1191,6 +1192,7 @@ class NativeMethods { this.Image = win.Image; this.Function = win.Function; this.functionToString = win.Function.prototype.toString; + this.functionBind = win.Function.prototype.bind; this.Error = win.Error; this.FontFace = win.FontFace; this.StorageEvent = win.StorageEvent;