| Index: third_party/WebKit/Source/bindings/core/v8/ScriptPromiseResolver.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseResolver.h b/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseResolver.h
|
| index e64369c12b93fa1514c26b7378d3ec445e4bf4ba..20ce083af5400b7ff745c4f7b477e74c0b2cd67a 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseResolver.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseResolver.h
|
| @@ -126,6 +126,9 @@ class CORE_EXPORT ScriptPromiseResolver
|
| m_state = newState;
|
|
|
| ScriptState::Scope scope(m_scriptState.get());
|
| + // TODO(aobzhirov): Converting value to the wrapper can trigger assert
|
| + // if the script is forbidden.
|
| + // The script check below will be unreachable in this case.
|
| m_value.set(m_scriptState->isolate(),
|
| ToV8(value, m_scriptState->context()->Global(),
|
| m_scriptState->isolate()));
|
|
|