| Index: Source/bindings/scripts/unstable/v8_interface.py
 | 
| diff --git a/Source/bindings/scripts/unstable/v8_interface.py b/Source/bindings/scripts/unstable/v8_interface.py
 | 
| index 746de7a505841da2e8dc3d041c1aabf26e563b92..6ab450d907ba5741e183e1a98a9f9e50a11bbbdf 100644
 | 
| --- a/Source/bindings/scripts/unstable/v8_interface.py
 | 
| +++ b/Source/bindings/scripts/unstable/v8_interface.py
 | 
| @@ -108,6 +108,9 @@ def generate_interface(interface):
 | 
|              ('overload_index' not in method or method['overload_index'] == 1))
 | 
|  
 | 
|      template_contents.update({
 | 
| +        'has_domain_safe_method_setter': any(
 | 
| +            method['is_check_security_for_frame'] and not method['is_read_only']
 | 
| +            for method in methods),
 | 
|          'has_method_configuration': any(method['do_generate_method_configuration'] for method in methods),
 | 
|          'has_per_context_enabled_methods': any(method['per_context_enabled_function_name'] for method in methods),
 | 
|          'methods': methods,
 | 
| 
 |