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
As far as I'm aware, neither of these have a CSSStyleSheet object associated with them. Seems like we should probably fall back to using the Document's base URL in these cases.
The text was updated successfully, but these errors were encountered:
If sheet’s origin-clean flag is set, set req’s initiator type to "css". [CSSOM]
If we don't have a style sheet, we still have to set an initiator type here. Otherwise, a PerformanceResourceTiming timing event won't be fired for this fetch request (the event is gated by spec prose which states "If fetchParams’s request’s initiator type is not null" in the fetch finale).
"fetch a style resource" and thus "fetch an external image for a stylesheet" require a non-null
CSSStyleSheet
. However, there may not be such a sheet. Specifically, presentational hints and style attributes.For example:
Here the
background
attribute setsbackground-image
:As another example, inline styles:
As far as I'm aware, neither of these have a
CSSStyleSheet
object associated with them. Seems like we should probably fall back to using the Document's base URL in these cases.The text was updated successfully, but these errors were encountered: