| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
auto sizing_info = mojom::blink::IntrinsicSizingInfo::New();
sizing_info->is_cleared = true;
if (auto* web_frame = WebLocalFrameImpl::FromFrame(local_frame)) {nit: these lines should be inside the inner-most `if` block.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
auto sizing_info = mojom::blink::IntrinsicSizingInfo::New();
sizing_info->is_cleared = true;
if (auto* web_frame = WebLocalFrameImpl::FromFrame(local_frame)) {nit: these lines should be inside the inner-most `if` block.
Done, good catch, thanks.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
@chrome-ipc-reviews, PTAL `intrinsic_sizing_info.mojom`
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
From googleclient/chrome/chromium_gwsq/ipc/config.gwsq:
IPC: sa...@chromium.org
📎 It looks like you’re making a possibly security-sensitive change! 📎 IPC security review isn’t a rubberstamp, so your friendly security reviewer will need a fair amount of context to review your CL effectively. Please review your CL description and code comments to make sure they provide context for someone unfamiliar with your project/area. Pay special attention to where data comes from and which processes it flows between (and their privilege levels). Feel free to point your security reviewer at design docs, bugs, or other links if you can’t reasonably make a self-contained CL description. (Also see https://cbea.ms/git-commit/).
IPC reviewer(s): sa...@chromium.org
Reviewer source(s):
sa...@chromium.org is from context(googleclient/chrome/chromium_gwsq/ipc/config.gwsq)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Exportable changes to web-platform-tests were detected in this CL and a pull request in the upstream repo has been made: https://github.com/web-platform-tests/wpt/pull/59253.
When this CL lands, the bot will automatically merge the PR on GitHub if the required GitHub checks pass; otherwise, ecosystem-infra@ team will triage the failures and may contact you.
WPT Export docs:
https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_platform_tests.md#Automatic-export-process
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
[iframe] Clear the natural size if navigated to non-responsive page
This patch implements one of the CSS WG resolutions[1]:
> RESOLVED: Once we know the new page is not opted-in, we
> clear the size
To do this across renderer processes for OOPIF, a new flag
`is_cleared` is added to the mojo `IntrinsicSizingInfo` struct.
This flag is set when an `<iframe>` content starts processing
`<body>` without seeing the `<meta>` tag that opts-in to the
responsive sizing of the `<iframe>`, to clear natural sizes
received from its previous content.
[1]: https://github.com/w3c/csswg-drafts/issues/13589
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
The WPT PR for this CL has been merged upstream! https://github.com/web-platform-tests/wpt/pull/59253
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |