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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGResources.cpp

Issue 2065593002: Unprefix the CSS 'filter' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove disabler. Try different DCHECK expressions. Created 4 years, 6 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
Index: third_party/WebKit/Source/core/layout/svg/SVGResources.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGResources.cpp b/third_party/WebKit/Source/core/layout/svg/SVGResources.cpp
index 3f902156b378daa0fcc1a6667853c278efec29e7..c668bdb303d1786d862fbcabd860dc5b1eda9035 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGResources.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGResources.cpp
@@ -25,7 +25,7 @@
#include "core/layout/svg/LayoutSVGResourceMarker.h"
#include "core/layout/svg/LayoutSVGResourceMasker.h"
#include "core/layout/svg/LayoutSVGResourcePaintServer.h"
-#include "core/style/SVGComputedStyle.h"
+#include "core/style/ComputedStyle.h"
#include "core/svg/SVGFilterElement.h"
#include "core/svg/SVGGradientElement.h"
#include "core/svg/SVGPatternElement.h"
@@ -205,7 +205,7 @@ static inline SVGResources& ensureResources(std::unique_ptr<SVGResources>& resou
return *resources.get();
}
-std::unique_ptr<SVGResources> SVGResources::buildResources(const LayoutObject* object, const SVGComputedStyle& style)
+std::unique_ptr<SVGResources> SVGResources::buildResources(const LayoutObject* object, const ComputedStyle& computedStyle)
{
ASSERT(object);
@@ -222,6 +222,8 @@ std::unique_ptr<SVGResources> SVGResources::buildResources(const LayoutObject* o
TreeScope& treeScope = element->treeScope();
SVGDocumentExtensions& extensions = element->document().accessSVGExtensions();
+ const SVGComputedStyle& style = computedStyle.svgStyle();
+
std::unique_ptr<SVGResources> resources;
if (clipperFilterMaskerTags().contains(tagName)) {
if (style.hasClipper()) {
@@ -230,10 +232,17 @@ std::unique_ptr<SVGResources> SVGResources::buildResources(const LayoutObject* o
registerPendingResource(extensions, id, element);
}
- if (style.hasFilter()) {
- AtomicString id = style.filterResource();
- if (!ensureResources(resources).setFilter(getLayoutSVGResourceById<LayoutSVGResourceFilter>(treeScope, id)))
- registerPendingResource(extensions, id, element);
+ if (computedStyle.hasFilter() && !object->isSVGRoot()) {
+ const FilterOperations& filterOperations = computedStyle.filter();
+ if (filterOperations.size() == 1) {
+ const FilterOperation& filterOperation = *filterOperations.at(0);
+ if (filterOperation.type() == FilterOperation::REFERENCE) {
+ const auto& referenceFilterOperation = toReferenceFilterOperation(filterOperation);
+ AtomicString id = SVGURIReference::fragmentIdentifierFromIRIString(referenceFilterOperation.url(), treeScope);
+ if (!ensureResources(resources).setFilter(getLayoutSVGResourceById<LayoutSVGResourceFilter>(treeScope, id)))
+ registerPendingResource(extensions, id, element);
+ }
+ }
}
if (style.hasMasker()) {

Powered by Google App Engine
This is Rietveld 408576698