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

Unified Diff: Source/core/svg/SVGImageElement.cpp

Issue 963733002: [svg2] Make 'width' and 'height' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: test fixes Created 5 years, 9 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: Source/core/svg/SVGImageElement.cpp
diff --git a/Source/core/svg/SVGImageElement.cpp b/Source/core/svg/SVGImageElement.cpp
index 39aa67442aff27613887e07d993e5c84bc3c30b2..71aec23345889ab97d7317cd17915369d7e38f84 100644
--- a/Source/core/svg/SVGImageElement.cpp
+++ b/Source/core/svg/SVGImageElement.cpp
@@ -159,13 +159,10 @@ void SVGImageElement::svgAttributeChanged(const QualifiedName& attrName)
if (!renderer)
return;
- if (isLengthAttribute) {
- if (toLayoutSVGImage(renderer)->updateImageViewport())
- markForLayoutAndParentResourceInvalidation(renderer);
- return;
- }
-
- if (attrName == SVGNames::preserveAspectRatioAttr) {
+ if (isLengthAttribute || attrName == SVGNames::preserveAspectRatioAttr) {
+ // FIXME: if isLengthAttribute then we should avoid this
+ // call if the viewport didn't change, however since we don't
+ // have the computed style yet we can't use updateImageViewport.
markForLayoutAndParentResourceInvalidation(renderer);
return;
}

Powered by Google App Engine
This is Rietveld 408576698