Index: Source/bindings/v8/custom/V8ElementCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8ElementCustom.cpp b/Source/bindings/v8/custom/V8ElementCustom.cpp |
index 17ff2fb2208f5e9c889c4409e42115c3b8ad05a0..4cc9201264b71498e7ace11d0f0be1d47a384df6 100644 |
--- a/Source/bindings/v8/custom/V8ElementCustom.cpp |
+++ b/Source/bindings/v8/custom/V8ElementCustom.cpp |
@@ -52,7 +52,7 @@ void V8Element::scrollLeftAttributeSetterCustom(v8::Local<v8::Value> value, cons |
return; |
} |
- V8TRYCATCH_EXCEPTION_VOID(int, position, toInt32(value, exceptionState), exceptionState); |
+ V8TRYCATCH_VOID_EXCEPTION(int, position, toInt32(value, exceptionState), exceptionState); |
impl->setScrollLeft(position); |
} |
@@ -68,7 +68,7 @@ void V8Element::scrollTopAttributeSetterCustom(v8::Local<v8::Value> value, const |
return; |
} |
- V8TRYCATCH_EXCEPTION_VOID(int, position, toInt32(value, exceptionState), exceptionState); |
+ V8TRYCATCH_VOID_EXCEPTION(int, position, toInt32(value, exceptionState), exceptionState); |
impl->setScrollTop(position); |
} |