Index: Source/core/html/HTMLFrameElement.cpp |
diff --git a/Source/core/html/HTMLFrameElement.cpp b/Source/core/html/HTMLFrameElement.cpp |
index ac0821de11ada64c6880e9ede67cec298e1bba94..677dc453daa96f98c10942b83ff8daf37a367166 100644 |
--- a/Source/core/html/HTMLFrameElement.cpp |
+++ b/Source/core/html/HTMLFrameElement.cpp |
@@ -75,8 +75,8 @@ void HTMLFrameElement::parseAttribute(const QualifiedName& name, const AtomicStr |
m_frameBorderSet = !value.isNull(); |
// FIXME: If we are already attached, this has no effect. |
} else if (name == noresizeAttr) { |
- if (renderer()) |
- renderer()->updateFromElement(); |
+ if (layoutObject()) |
+ layoutObject()->updateFromElement(); |
} else |
HTMLFrameElementBase::parseAttribute(name, value); |
} |