| Index: Source/core/html/HTMLMediaElement.cpp
 | 
| diff --git a/Source/core/html/HTMLMediaElement.cpp b/Source/core/html/HTMLMediaElement.cpp
 | 
| index dce7e2a5996dc18a525d664909b869ed00261109..e41822a10578b31602fbd0239c17a0a544676f3e 100644
 | 
| --- a/Source/core/html/HTMLMediaElement.cpp
 | 
| +++ b/Source/core/html/HTMLMediaElement.cpp
 | 
| @@ -539,11 +539,11 @@ void HTMLMediaElement::removedFrom(ContainerNode* insertionPoint)
 | 
|      HTMLElement::removedFrom(insertionPoint);
 | 
|  }
 | 
|  
 | 
| -void HTMLMediaElement::attach()
 | 
| +void HTMLMediaElement::attach(const AttachContext& context)
 | 
|  {
 | 
|      ASSERT(!attached());
 | 
|  
 | 
| -    HTMLElement::attach();
 | 
| +    HTMLElement::attach(context);
 | 
|  
 | 
|      if (renderer())
 | 
|          renderer()->updateFromElement();
 | 
| 
 |