| Index: Source/bindings/scripts/v8_types.py
|
| diff --git a/Source/bindings/scripts/v8_types.py b/Source/bindings/scripts/v8_types.py
|
| index 746bf9c15d680356c88b8995b056cb81fce76e99..c5941bcecb5a0b8e9ba223b613e6a8a37ed92203 100644
|
| --- a/Source/bindings/scripts/v8_types.py
|
| +++ b/Source/bindings/scripts/v8_types.py
|
| @@ -497,6 +497,8 @@ def v8_value_to_cpp_value(idl_type, extended_attributes, v8_value, index, isolat
|
|
|
| if 'EnforceRange' in extended_attributes:
|
| arguments = ', '.join([v8_value, 'EnforceRange', 'exceptionState'])
|
| + elif 'Clamp' in extended_attributes:
|
| + arguments = ', '.join([v8_value, 'Clamp', 'exceptionState'])
|
| elif idl_type.v8_conversion_needs_exception_state:
|
| arguments = ', '.join([v8_value, 'exceptionState'])
|
| else:
|
|
|