| Index: third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp b/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp
|
| index 2dba8ed43b4b2d7bff91ce104bd44cedc002d5f0..a938f4bc5acaeeb8e3b169b4345e3c592ddbc280 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp
|
| @@ -126,10 +126,10 @@ void V8HTMLConstructor::htmlConstructor(
|
| // This is an element being created with 'new' from script
|
| element = definition->createElementForConstructor(*window->document());
|
| } else {
|
| - element = definition->constructionStack().last();
|
| + element = definition->constructionStack().back();
|
| if (element) {
|
| // This is an element being upgraded that has called super
|
| - definition->constructionStack().last().clear();
|
| + definition->constructionStack().back().clear();
|
| } else {
|
| // During upgrade an element has invoked the same constructor
|
| // before calling 'super' and that invocation has poached the
|
|
|