| Index: third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
|
| index abd237c1423dd5be9bbb61c4b8347fce2935ab85..c292afa284b3f7671ccebcc12a6b867ed59b066a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
|
| @@ -57,7 +57,6 @@ inline HTMLObjectElement::HTMLObjectElement(Document& document,
|
| createdByParser,
|
| ShouldNotPreferPlugInsForImages),
|
| m_useFallbackContent(false) {
|
| - associateByParser(form);
|
| }
|
|
|
| inline HTMLObjectElement::~HTMLObjectElement() {}
|
| @@ -465,6 +464,8 @@ bool HTMLObjectElement::willUseFallbackContentAtLayout() const {
|
| return !hasValidClassId() && hasFallbackContent();
|
| }
|
|
|
| -void HTMLObjectElement::associateWith(HTMLFormElement*){};
|
| +void HTMLObjectElement::associateWith(HTMLFormElement* form) {
|
| + associateByParser(form);
|
| +};
|
|
|
| } // namespace blink
|
|
|