| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp
|
| index a54f4096c88ae2f4f7704727bf86a492e50c3233..608efb44be52dd4d73f94539fc202567e1a1567c 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp
|
| @@ -81,7 +81,6 @@ v8::Local<v8::FunctionTemplate> V8TestInterfaceEventTargetConstructor::domTempla
|
| result = v8::FunctionTemplate::New(isolate, V8TestInterfaceEventTargetConstructorCallback);
|
| v8::Local<v8::ObjectTemplate> instanceTemplate = result->InstanceTemplate();
|
| instanceTemplate->SetInternalFieldCount(V8TestInterfaceEventTarget::internalFieldCount);
|
| - result->SetClassName(v8AtomicString(isolate, "TestInterfaceEventTarget"));
|
| result->Inherit(V8TestInterfaceEventTarget::domTemplate(isolate));
|
| data->setDOMTemplate(&domTemplateKey, result);
|
| return result;
|
| @@ -101,6 +100,8 @@ static void installV8TestInterfaceEventTargetTemplate(v8::Local<v8::FunctionTemp
|
| v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->PrototypeTemplate();
|
| ALLOW_UNUSED_LOCAL(prototypeTemplate);
|
|
|
| + prototypeTemplate->Set(v8::Symbol::GetToStringTag(isolate), v8AtomicString(isolate, "TestInterfaceEventTarget"));
|
| +
|
| // Custom toString template
|
| functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData::from(isolate)->toStringTemplate());
|
| }
|
|
|