Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2992)

Unified Diff: cc/blink/web_display_item_list_impl.cc

Issue 2297213003: Fix CSS reference filters with negative transformed children. (Closed)
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/blink/web_display_item_list_impl.h ('k') | cc/blink/web_layer_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/blink/web_display_item_list_impl.cc
diff --git a/cc/blink/web_display_item_list_impl.cc b/cc/blink/web_display_item_list_impl.cc
index e9935f3d23a3f5ec9a734c404472f81461c5eeca..9cd889156026958a051ca1cce72cdc4f90a10011 100644
--- a/cc/blink/web_display_item_list_impl.cc
+++ b/cc/blink/web_display_item_list_impl.cc
@@ -132,10 +132,11 @@ void WebDisplayItemListImpl::appendEndCompositingItem() {
void WebDisplayItemListImpl::appendFilterItem(
const cc::FilterOperations& filters,
- const blink::WebFloatRect& filter_bounds) {
+ const blink::WebFloatRect& filter_bounds,
+ const blink::WebFloatPoint& origin) {
display_item_list_
->CreateAndAppendPairedBeginItemWithVisualRect<cc::FilterDisplayItem>(
- gfx::ToEnclosingRect(filter_bounds), filters, filter_bounds);
+ gfx::ToEnclosingRect(filter_bounds), filters, filter_bounds, origin);
}
void WebDisplayItemListImpl::appendEndFilterItem() {
« no previous file with comments | « cc/blink/web_display_item_list_impl.h ('k') | cc/blink/web_layer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698