Index: Source/bindings/scripts/v8_utilities.py |
diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py |
index ba5dd6f31290cdc1522d12cf24bfdcf9739192ff..6df63c624cebb3d057e9069d0d8453f21997c37c 100644 |
--- a/Source/bindings/scripts/v8_utilities.py |
+++ b/Source/bindings/scripts/v8_utilities.py |
@@ -201,6 +201,7 @@ CALL_WITH_ARGUMENTS = { |
'ActiveWindow': 'callingDOMWindow(info.GetIsolate())', |
'FirstWindow': 'enteredDOMWindow(info.GetIsolate())', |
'Document': 'document', |
+ 'ThisValue': 'ScriptValue(scriptState, info.This())', |
} |
# List because key order matters, as we want arguments in deterministic order |
CALL_WITH_VALUES = [ |
@@ -210,6 +211,7 @@ CALL_WITH_VALUES = [ |
'ActiveWindow', |
'FirstWindow', |
'Document', |
+ 'ThisValue', |
] |