| Index: Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp b/Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp
|
| index 711660a221e95b51290102b292feee5fc94e3a2f..e9eb3abc46da7bf6ba3451ffbcb997ffb71c83ab 100644
|
| --- a/Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp
|
| @@ -565,6 +565,8 @@ void V8InjectedScriptHost::setNonEnumPropertyMethodCustom(const v8::FunctionCall
|
| return;
|
|
|
| v8::Local<v8::Object> object = info[0].As<v8::Object>();
|
| + // TODO(bashi): Use CreateDataProperty() instead of ForceSet().
|
| + // http://crbug.com/475206
|
| object->ForceSet(info.GetIsolate()->GetCurrentContext(), info[1], info[2], v8::DontEnum);
|
| }
|
|
|
|
|