matchOriginAsFallback property
bool?
get
matchOriginAsFallback
Indicates whether the script can be injected into frames where the URL
contains an unsupported scheme; specifically: about:, data:, blob:, or
filesystem:. In these cases, the URL's origin is checked to determine if
the script should be injected. If the origin is null
(as is the case
for data: URLs) then the used origin is either the frame that created
the current frame or the frame that initiated the navigation to this
frame. Note that this may not be the parent frame.
Implementation
bool? get matchOriginAsFallback => _wrapped.matchOriginAsFallback;
set
matchOriginAsFallback
(bool? v)
Implementation
set matchOriginAsFallback(bool? v) {
_wrapped.matchOriginAsFallback = v;
}