Переглянути джерело

Add mask-image to absolute positioning containing block

Michael Ragazzon 1 рік тому
батько
коміт
742bbbafda
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      Source/Core/Layout/ContainerBox.cpp

+ 1 - 1
Source/Core/Layout/ContainerBox.cpp

@@ -132,7 +132,7 @@ ContainerBox::ContainerBox(Type type, Element* element, ContainerBox* parent_con
 		overflow_x = computed.overflow_x();
 		overflow_y = computed.overflow_y();
 		is_absolute_positioning_containing_block = (computed.position() != Style::Position::Static || computed.has_local_transform() ||
-			computed.has_local_perspective() || computed.has_filter() || computed.has_backdrop_filter());
+			computed.has_local_perspective() || computed.has_filter() || computed.has_backdrop_filter() || computed.has_mask_image());
 	}
 }