| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
btw. here is the related chrome change:
https://chromium-review.googlesource.com/c/chromium/src/+/7913167
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
* the host defined options from the ScriptOrigin for SourceTextModules.if I remember ScriptOrigin is the wrong source for this (since it should be context allocated for scripts / adn probably module record allocated for )SourceTextModules. but fine as it the status quo.
i::Cast<i::SourceTextModule>(self)->GetScript()->host_defined_options(),nit: maybe this could be a getter on SourceTextModule for now, so we don't have a explicit dependency on i::Script here
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +0 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
| Commit-Queue | +1 |
as discussed offline, now only for synthetic modules to avoid future issues.
ptal again.
* the host defined options from the ScriptOrigin for SourceTextModules.if I remember ScriptOrigin is the wrong source for this (since it should be context allocated for scripts / adn probably module record allocated for )SourceTextModules. but fine as it the status quo.
Ok, let's entirely avoid this future problem by only exposing the host defined options for synthetic modules.
i::Cast<i::SourceTextModule>(self)->GetScript()->host_defined_options(),nit: maybe this could be a getter on SourceTextModule for now, so we don't have a explicit dependency on i::Script here
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |