| Index: third_party/WebKit/Source/bindings/scripts/v8_attributes.py
|
| diff --git a/third_party/WebKit/Source/bindings/scripts/v8_attributes.py b/third_party/WebKit/Source/bindings/scripts/v8_attributes.py
|
| index 7eed0bd0482b619c01b96f9debd9f124f84861e1..109b010f4b9c90a336c98eaf0888aba037dbc113 100644
|
| --- a/third_party/WebKit/Source/bindings/scripts/v8_attributes.py
|
| +++ b/third_party/WebKit/Source/bindings/scripts/v8_attributes.py
|
| @@ -198,8 +198,6 @@ def attribute_context(interface, attribute, interfaces):
|
| # [CrossOrigin] is incompatible with a number of other attributes, so check
|
| # for them here.
|
| if is_cross_origin:
|
| - if context['has_cross_origin_getter'] and context['has_custom_getter']:
|
| - raise Exception('[CrossOrigin] and [Custom] are incompatible on the same getter: %s.%s', interface.name, attribute.name)
|
| if context['has_cross_origin_setter'] and context['has_custom_setter']:
|
| raise Exception('[CrossOrigin] and [Custom] are incompatible on the same setter: %s.%s', interface.name, attribute.name)
|
| if context['is_per_world_bindings']:
|
|
|