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

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

Issue 2312713002: Unprefix -webkit-clip-path (Closed)
Patch Set: Rebase Created 4 years, 3 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/SVGLayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
index 12c5a38e8e8e30fbd9ac252e5d9c363c32d80613..449a739d7ac709e469dde2c30986bd29f3552f3e 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
@@ -649,7 +649,7 @@ void writeResources(TextStream& ts, const LayoutObject& object, int indent)
ts << " " << masker->resourceBoundingBox(&object) << "\n";
}
}
- if (ClipPathOperation* clipPathOperation = svgStyle.clipPath()) {
+ if (ClipPathOperation* clipPathOperation = style.clipPath()) {
if (clipPathOperation->type() == ClipPathOperation::REFERENCE) {
const ReferenceClipPathOperation& clipPathReference = toReferenceClipPathOperation(*clipPathOperation);
AtomicString id = SVGURIReference::fragmentIdentifierFromIRIString(clipPathReference.url(), object.document());

Powered by Google App Engine
This is Rietveld 408576698