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 0258371a85e273d050ff8180fa31f466f4d78ef0..2eb716d8a32d33f2f91abae5b58aeb67a75db33a 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())); |