I'm trying to change the value for window.navigator.onLine using Object.defineProperty.
The command I ran is :
Object.defineProperty(window.navigator, "onLine", {value: false, configurable: true});
which worked on :
* Edge 13
* Opera 40.0
* Chrome 54.0
* FireFox 49.0
Any ideas why this didn't work? it says that IE11 is suppose to support this method.