| Index: Source/bindings/tests/results/V8TestNode.cpp
 | 
| diff --git a/Source/bindings/tests/results/V8TestNode.cpp b/Source/bindings/tests/results/V8TestNode.cpp
 | 
| index 13edf98e3bd910b2f3def7e328c6b6fa7ca29834..17fcb34be65546bafc2e1261ea189745531a2726 100644
 | 
| --- a/Source/bindings/tests/results/V8TestNode.cpp
 | 
| +++ b/Source/bindings/tests/results/V8TestNode.cpp
 | 
| @@ -183,7 +183,7 @@ static v8::Handle<v8::FunctionTemplate> ConfigureV8TestNodeTemplate(v8::Handle<v
 | 
|      UNUSED_PARAM(prototypeTemplate);
 | 
|  
 | 
|      // Custom toString template
 | 
| -    functionTemplate->Set(v8::String::NewSymbol("toString"), V8PerIsolateData::current()->toStringTemplate());
 | 
| +    functionTemplate->Set(v8::String::NewFromUtf8(isolate, "toString", v8::String::kInternalizedString), V8PerIsolateData::current()->toStringTemplate());
 | 
|      return functionTemplate;
 | 
|  }
 | 
|  
 | 
| @@ -195,11 +195,11 @@ v8::Handle<v8::FunctionTemplate> V8TestNode::GetTemplate(v8::Isolate* isolate, W
 | 
|          return result->value.newLocal(isolate);
 | 
|  
 | 
|      TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate");
 | 
| -    v8::HandleScope handleScope(isolate);
 | 
| -    v8::Handle<v8::FunctionTemplate> templ =
 | 
| +    v8::EscapableHandleScope handleScope(isolate);
 | 
| +    v8::Local<v8::FunctionTemplate> templ =
 | 
|          ConfigureV8TestNodeTemplate(data->rawTemplate(&wrapperTypeInfo, currentWorldType), isolate, currentWorldType);
 | 
|      data->templateMap(currentWorldType).add(&wrapperTypeInfo, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
 | 
| -    return handleScope.Close(templ);
 | 
| +    return handleScope.Escape(templ);
 | 
|  }
 | 
|  
 | 
|  bool V8TestNode::hasInstance(v8::Handle<v8::Value> jsValue, v8::Isolate* isolate, WrapperWorldType currentWorldType)
 | 
| 
 |