| Index: Source/bindings/tests/results/V8TestObjectPython.cpp
 | 
| diff --git a/Source/bindings/tests/results/V8TestObjectPython.cpp b/Source/bindings/tests/results/V8TestObjectPython.cpp
 | 
| index e84190d24a39f3cc7db2d02070c0d74c5aa50866..0c219daefd1ac7e1a40c7cec69db3ce23a9593fb 100644
 | 
| --- a/Source/bindings/tests/results/V8TestObjectPython.cpp
 | 
| +++ b/Source/bindings/tests/results/V8TestObjectPython.cpp
 | 
| @@ -2724,16 +2724,30 @@ static void conditionalEnabledAtRuntimeLongAttributeAttributeSetterCallback(v8::
 | 
|  }
 | 
|  #endif // ENABLE(Condition)
 | 
|  
 | 
| -static void setterCallWithActiveWindowAndFirstWindowReadonlyStringAttributeAttributeGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
 | 
| +static void setterCallWithActiveWindowAndFirstWindowStringAttributeAttributeGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
 | 
|  {
 | 
|      TestObjectPython* imp = V8TestObjectPython::toNative(info.Holder());
 | 
| -    v8SetReturnValueString(info, imp->setterCallWithActiveWindowAndFirstWindowReadonlyStringAttribute(), info.GetIsolate());
 | 
| +    v8SetReturnValueString(info, imp->setterCallWithActiveWindowAndFirstWindowStringAttribute(), info.GetIsolate());
 | 
|  }
 | 
|  
 | 
| -static void setterCallWithActiveWindowAndFirstWindowReadonlyStringAttributeAttributeGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
 | 
| +static void setterCallWithActiveWindowAndFirstWindowStringAttributeAttributeGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
 | 
|  {
 | 
|      TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter");
 | 
| -    TestObjectPythonV8Internal::setterCallWithActiveWindowAndFirstWindowReadonlyStringAttributeAttributeGetter(name, info);
 | 
| +    TestObjectPythonV8Internal::setterCallWithActiveWindowAndFirstWindowStringAttributeAttributeGetter(name, info);
 | 
| +    TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution");
 | 
| +}
 | 
| +
 | 
| +static void setterCallWithActiveWindowAndFirstWindowStringAttributeAttributeSetter(v8::Local<v8::String> name, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
 | 
| +{
 | 
| +    TestObjectPython* imp = V8TestObjectPython::toNative(info.Holder());
 | 
| +    V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
 | 
| +    imp->setSetterCallWithActiveWindowAndFirstWindowStringAttribute(activeDOMWindow(), firstDOMWindow(), cppValue);
 | 
| +}
 | 
| +
 | 
| +static void setterCallWithActiveWindowAndFirstWindowStringAttributeAttributeSetterCallback(v8::Local<v8::String> name, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
 | 
| +{
 | 
| +    TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter");
 | 
| +    TestObjectPythonV8Internal::setterCallWithActiveWindowAndFirstWindowStringAttributeAttributeSetter(name, jsValue, info);
 | 
|      TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution");
 | 
|  }
 | 
|  
 | 
| @@ -3028,7 +3042,7 @@ static const V8DOMConfiguration::AttributeConfiguration V8TestObjectPythonAttrib
 | 
|      {"reflectedId", TestObjectPythonV8Internal::reflectedIdAttributeGetterCallback, 0, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"reflectedName", TestObjectPythonV8Internal::reflectedNameAttributeGetterCallback, 0, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"reflectedClass", TestObjectPythonV8Internal::reflectedClassAttributeGetterCallback, 0, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
| -    {"setterCallWithActiveWindowAndFirstWindowReadonlyStringAttribute", TestObjectPythonV8Internal::setterCallWithActiveWindowAndFirstWindowReadonlyStringAttributeAttributeGetterCallback, 0, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
| +    {"setterCallWithActiveWindowAndFirstWindowStringAttribute", TestObjectPythonV8Internal::setterCallWithActiveWindowAndFirstWindowStringAttributeAttributeGetterCallback, TestObjectPythonV8Internal::setterCallWithActiveWindowAndFirstWindowStringAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"setterRaisesExceptionLongAttribute", TestObjectPythonV8Internal::setterRaisesExceptionLongAttributeAttributeGetterCallback, TestObjectPythonV8Internal::setterRaisesExceptionLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"strictTypeCheckingReadonlyFloatAttribute", TestObjectPythonV8Internal::strictTypeCheckingReadonlyFloatAttributeAttributeGetterCallback, 0, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"strictTypeCheckingReadonlyTestInterfaceAttribute", TestObjectPythonV8Internal::strictTypeCheckingReadonlyTestInterfaceAttributeAttributeGetterCallback, 0, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
| 
 |