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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 2018923002: Fixed cursor hotspot SVG override and made CSSCursorImageValue constant (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed test to use harness Created 4 years, 7 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/css/resolver/StyleBuilderCustom.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
index 46aaa667af615c7f7d8d56196f31ec09d3e7f754..bd9ea8671395811c6cbfdd961bbff9123251d23f 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
@@ -198,9 +198,34 @@ void StyleBuilderFunctions::applyValueCSSPropertyCursor(StyleResolverState& stat
CSSValue* item = list->item(i);
if (item->isCursorImageValue()) {
CSSCursorImageValue* image = toCSSCursorImageValue(item);
- if (image->updateIfSVGCursorIsUsed(state.element())) // Elements with SVG cursors are not allowed to share style.
+ IntPoint hotSpot = image->hotSpot();
+ bool hotSpotSpecified = image->hotSpotSpecified();
+
+ Element* element = state.element();
+ if (SVGCursorElement* cursorElement = image->getSVGCursorElement(element)) {
+ // Set the hot spot if it wasn't specified in the CSS but is specified in the SVG.
+ if (!hotSpotSpecified) {
+ hotSpotSpecified = true;
+ SVGLengthContext lengthContext(0);
+ // x() and y() return 0 if they're not specified in cursorElement.
+ float svgX = roundf(cursorElement->x()->currentValue()->value(lengthContext));
+ hotSpot.setX(static_cast<int>(svgX));
+ float svgY = roundf(cursorElement->y()->currentValue()->value(lengthContext));
+ hotSpot.setY(static_cast<int>(svgY));
+ }
+
+ if (image->cachedImageURL() != element->document().completeURL(cursorElement->href()->currentValue()->value()))
Timothy Loh 2016/05/31 05:04:35 I think you missed when I commented earlier, this
sashab 2016/05/31 05:24:12 Oh yup cool, done
+ image->clearCachedImage();
+
+ SVGElement* svgElement = toSVGElement(element);
+ svgElement->setCursorImageValue(image);
+ cursorElement->addClient(svgElement);
+
+ // Elements with SVG cursors are not allowed to share style.
state.style()->setUnique();
- state.style()->addCursor(state.styleImage(CSSPropertyCursor, *image), image->hotSpotSpecified(), image->hotSpot());
+ }
+
+ state.style()->addCursor(state.styleImage(CSSPropertyCursor, *image), hotSpotSpecified, hotSpot);
} else {
state.style()->setCursor(toCSSPrimitiveValue(item)->convertTo<ECursor>());
}

Powered by Google App Engine
This is Rietveld 408576698