You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
The Image's src instance property is configurable and enumerable in all browsers except Focus for iOS.
This incompatibility is causing https://ovl.oceandatalab.com to not load properly.
It's caused by the following code that replaces the src property with a non-configurable and non-enumerable one (which is the default when using Object.defineProperty).
The
Image
'ssrc
instance property is configurable and enumerable in all browsers except Focus for iOS.This incompatibility is causing https://ovl.oceandatalab.com to not load properly.
It's caused by the following code that replaces the
src
property with a non-configurable and non-enumerable one (which is the default when usingObject.defineProperty
).focus-ios/Blockzilla/Lib/TrackingProtection/Assets/preload.js
Lines 28 to 38 in 71607d0
This issue can easily fixed by setting both
configurable
andenumerable
totrue
, like this:I'm open to submitting a PR.
PS: I'm one of the developers of the linked page that is not loading properly.
┆Issue is synchronized with this Jira Task
The text was updated successfully, but these errors were encountered: