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
Refactor all dart:html classes with cross-frame variants: Window, Location, History. The base type should be the more restrictive class, only with methods that accessible from a different frame.
The global window object will be a sub-class with everything.
Ensure that any method that returns a Window/Location/History returns the cross-frame variant unless it corresponds to your own window.
The text was updated successfully, but these errors were encountered:
Fixed. The base types - Window, Location, and History - now provided a more restricted API. The local variants (including the global window) are LocalWindow, LocalLocation, and LocalHistory.
Refactor all dart:html classes with cross-frame variants: Window, Location, History. The base type should be the more restrictive class, only with methods that accessible from a different frame.
The global window object will be a sub-class with everything.
Ensure that any method that returns a Window/Location/History returns the cross-frame variant unless it corresponds to your own window.
The text was updated successfully, but these errors were encountered: