| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (layout_view->StyleRef().HasBackgroundImage()) {WDYT of removing the background image check and just always invalidate? For example, background-color and color is also propagated to the viewport in PropagateStyleToViewport and that may also be affected by read-back-aware rendering.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
WDYT of removing the background image check and just always invalidate? For example, background-color and color is also propagated to the viewport in PropagateStyleToViewport and that may also be affected by read-back-aware rendering.
I think it would be reasonable to always invalidate, yes. It's not like we expect things to frequently move into and out of the subtree from other active parts of the DOM, so performance is likely not a big deal. I presume if an author wants to hide the frame until drawn they would remove it from the dom entirely or otherwise set it up such that the display items would need regeneration regardless. New CL shortly.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |