Panel | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
ON THIS PAGE
|
...
Enables BrightScript-JavaScript objects. This value is false
by default.
[boolean] force_shared_storage
Allows HTTP/HTTPS loaded urls to share local storage if they are loaded from the same domain. If both force_shared_storage and force_unshared_storage flags are set, file storage is separated and http storage is not.In OS 8.2.55.4 and later, html widgets that are loaded from HTTP/HTTPS protocols do not share the same local storage database (html widgets that are loaded via file protocol act as they did in previous releases). These flags allow you to change the default behavior of widgets loaded through HTTP/HTTPS from "unshared" to "shared", or to change the default behavior of widgets with locally loaded files to "unshared" from "shared":
[boolean] force_
...
shared_storage
...
Allows html widgets loaded via HTTP/HTTPS protocol to share local storage if they are loaded from the same domain.
[boolean] force_unshared_storage
Prevents html widgets loaded via FILE protocol from sharing storage.
[string] transform
Anchor | ||||
---|---|---|---|---|
|
...
[string or double] storage_quota
Sets the total size (in bytes) allotted to all local storage applications (including IndexedDB). A BrightScript integer is only guaranteed to be able to represent a count of bytes up to 2GB so avoid using integers when calculating the size: Use float or double instead since they can represent values over 2GB (string can also be used but is not recommended). If the storage path is specified without a storage quota, Chromium defaults to reserving 1GB plus 10% of the total size of the storage device.
[roMessagePort] port
Configures the message port to which the roHtmlWidget instance will send events. When using initialization parameters, the port
parameter should be used instead of the SetPort()
method to ensure the script can catch load-started
, load-finished
, and load-error
events.
...
Allows the user to set up one or more proxies. If proxy pac files are included, this method must be used to specify authentication parameters.
ifMessagePort
SetPort(port As roMessagePort)
...