Index: Source/bindings/tests/results/V8TestInterface.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterface.cpp b/Source/bindings/tests/results/V8TestInterface.cpp |
index b52bc8f4d67ad38972dcf5910e72676871e9a04a..25e501ec4aaaab5367a029612e6dd054c00867b8 100644 |
--- a/Source/bindings/tests/results/V8TestInterface.cpp |
+++ b/Source/bindings/tests/results/V8TestInterface.cpp |
@@ -1670,7 +1670,7 @@ bool V8TestInterface::PrivateScript::shortMethodWithShortArgumentImplementedInPr |
v8::Handle<v8::Value> v8Value = PrivateScriptRunner::runDOMMethod(scriptState, "TestInterfaceImplementation", "shortMethodWithShortArgumentImplementedInPrivateScript", holder, 1, argv); |
if (block.HasCaught()) { |
if (!PrivateScriptRunner::throwDOMExceptionInPrivateScriptIfNeeded(scriptState->isolate(), exceptionState, block.Exception())) { |
- // FIXME: We should support exceptions other than DOM exceptions. |
+ // FIXME: We should support more exceptions. |
RELEASE_ASSERT_NOT_REACHED(); |
} |
return false; |
@@ -1703,7 +1703,7 @@ bool V8TestInterface::PrivateScript::stringAttributeAttributeGetter(LocalFrame* |
v8::Handle<v8::Value> v8Value = PrivateScriptRunner::runDOMAttributeGetter(scriptState, "TestInterfaceImplementation", "stringAttribute", holder); |
if (block.HasCaught()) { |
if (!PrivateScriptRunner::throwDOMExceptionInPrivateScriptIfNeeded(scriptState->isolate(), exceptionState, block.Exception())) { |
- // FIXME: We should support exceptions other than DOM exceptions. |
+ // FIXME: We should support more exceptions. |
RELEASE_ASSERT_NOT_REACHED(); |
} |
return false; |
@@ -1736,7 +1736,7 @@ bool V8TestInterface::PrivateScript::stringAttributeAttributeSetter(LocalFrame* |
PrivateScriptRunner::runDOMAttributeSetter(scriptState, "TestInterfaceImplementation", "stringAttribute", holder, v8String(scriptState->isolate(), cppValue)); |
if (block.HasCaught()) { |
if (!PrivateScriptRunner::throwDOMExceptionInPrivateScriptIfNeeded(scriptState->isolate(), exceptionState, block.Exception())) { |
- // FIXME: We should support exceptions other than DOM exceptions. |
+ // FIXME: We should support more exceptions. |
RELEASE_ASSERT_NOT_REACHED(); |
} |
return false; |