summaryrefslogtreecommitdiff
path: root/Source/WebCore/bindings/v8/V8ObjectConstructor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bindings/v8/V8ObjectConstructor.cpp')
-rw-r--r--Source/WebCore/bindings/v8/V8ObjectConstructor.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/WebCore/bindings/v8/V8ObjectConstructor.cpp b/Source/WebCore/bindings/v8/V8ObjectConstructor.cpp
index f7877450a..d390185ca 100644
--- a/Source/WebCore/bindings/v8/V8ObjectConstructor.cpp
+++ b/Source/WebCore/bindings/v8/V8ObjectConstructor.cpp
@@ -74,8 +74,7 @@ v8::Local<v8::Object> V8ObjectConstructor::newInstanceInDocument(v8::Handle<v8::
TRACE_EVENT0("v8", "v8.newInstance");
#endif
- // No artificial limitations on the depth of recursion, see comment in
- // V8Proxy::callFunction.
+ // No artificial limitations on the depth of recursion.
V8RecursionScope recursionScope(document);
v8::Local<v8::Object> result = function->NewInstance(argc, argv);
crashIfV8IsDead();