diff options
author | Matthias Wolf <freebsd@rheinwolf.de> | 2022-02-01 18:38:49 +0100 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2022-02-01 18:45:40 +0100 |
commit | aa70a996eae7376396a5dd8a9e5105bebb6bc72c (patch) | |
tree | ee91e0564101803a57091d4df8e4f3892eb8d0fc /www/chromium/files/patch-cc_trees_property__tree.cc | |
parent | www/firefox-esr: update to 91.6.0 (rc1) (diff) |
www/chromium: update to 97.0.4692.99
Note that the port is currently broken on i386 as it does not compile there.
Security: https://vuxml.freebsd.org/freebsd/51496cbc-7a0e-11ec-a323-3065ec8fd3ec.html
Security: https://vuxml.freebsd.org/freebsd/9eeccbf3-6e26-11ec-bb10-3065ec8fd3ec.html
Security: https://vuxml.freebsd.org/freebsd/fb9ba490-5cc4-11ec-aac7-3065ec8fd3ec.html
Security: https://vuxml.freebsd.org/freebsd/18ac074c-579f-11ec-aac7-3065ec8fd3ec.html
Security: https://vuxml.freebsd.org/freebsd/b8c0cbca-472d-11ec-83dc-3065ec8fd3ec.html
Security: https://vuxml.freebsd.org/freebsd/976d7bf9-38ea-11ec-b3b0-3065ec8fd3ec.html
Security: https://vuxml.freebsd.org/freebsd/bdaecfad-3117-11ec-b3b0-3065ec8fd3ec.html
Diffstat (limited to 'www/chromium/files/patch-cc_trees_property__tree.cc')
-rw-r--r-- | www/chromium/files/patch-cc_trees_property__tree.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/www/chromium/files/patch-cc_trees_property__tree.cc b/www/chromium/files/patch-cc_trees_property__tree.cc index 1211a5a74f8f..78ee286a558a 100644 --- a/www/chromium/files/patch-cc_trees_property__tree.cc +++ b/www/chromium/files/patch-cc_trees_property__tree.cc @@ -1,19 +1,19 @@ ---- cc/trees/property_tree.cc.orig 2021-04-14 18:40:48 UTC +--- cc/trees/property_tree.cc.orig 2021-12-14 11:44:55 UTC +++ cc/trees/property_tree.cc -@@ -1299,13 +1299,13 @@ gfx::ScrollOffset ScrollTree::MaxScrollOffset(int scro +@@ -1299,13 +1299,13 @@ gfx::Vector2dF ScrollTree::MaxScrollOffset(int scroll_ gfx::Size clip_layer_bounds = container_bounds(scroll_node->id); -- gfx::ScrollOffset max_offset( -+ gfx::ScrollOffset _max_offset( +- gfx::Vector2dF max_offset( ++ gfx::Vector2dF _max_offset( scaled_scroll_bounds.width() - clip_layer_bounds.width(), scaled_scroll_bounds.height() - clip_layer_bounds.height()); - max_offset.Scale(1 / scale_factor); -- max_offset.SetToMax(gfx::ScrollOffset()); +- max_offset.SetToMax(gfx::Vector2dF()); - return max_offset; + _max_offset.Scale(1 / scale_factor); -+ _max_offset.SetToMax(gfx::ScrollOffset()); ++ _max_offset.SetToMax(gfx::Vector2dF()); + return _max_offset; } |