Index: Source/bindings/scripts/v8_utilities.py |
diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py |
index c4935d79d17f692a3c5eba27ac07d598fc5a8d93..f09cccab89150c22f1928fb7559e5d752e2c7a84 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', |
] |