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
Side effect of #8865 , which made a change so that the Main thread now requests the rtl-text-plugin, and generates a blob-url. It then sends the blobURL over to the worker for loading with importScripts. Prior to #8865 each worker would directly use the main url to load the rtl text plugin via importScripts directly, which would lead to multiple parallel network requests and slower load times.
However now, if the parent page doesnt allow script-src: blob: the importScripts for the blobURL will fail and causes rtl text to not be rendered.
The text was updated successfully, but these errors were encountered:
mapbox-gl-js version:
1.6.0
browser: All
Steps to Trigger Behavior
script-src: blob:
Cause
Side effect of #8865 , which made a change so that the Main thread now requests the
rtl-text-plugin
, and generates a blob-url. It then sends the blobURL over to the worker for loading withimportScripts
. Prior to #8865 each worker would directly use the main url to load the rtl text plugin viaimportScripts
directly, which would lead to multiple parallel network requests and slower load times.However now, if the parent page doesnt allow
script-src: blob:
theimportScripts
for the blobURL will fail and causes rtl text to not be rendered.The text was updated successfully, but these errors were encountered: