Chromium Code Reviews| Index: Source/core/testing/PrivateScriptTest.js |
| diff --git a/Source/core/testing/PrivateScriptTest.js b/Source/core/testing/PrivateScriptTest.js |
| index b2f71cae1da79f55ef44c98bce3e8e50b2f20bef..153e2a0703639e46b993cea0529ee569aa03b81e 100644 |
| --- a/Source/core/testing/PrivateScriptTest.js |
| +++ b/Source/core/testing/PrivateScriptTest.js |
| @@ -143,6 +143,11 @@ installClass("PrivateScriptTest", function(PrivateScriptTestPrototype) { |
| throwException(PrivateScriptJSError.ReferenceError, "method threw ReferenceError"); |
| } |
| + PrivateScriptTestPrototype.voidMethodThrowsReferenceError = function() { |
|
vivekg
2014/09/09 02:04:04
voidMethodThrowsStackOverflowError ??
|
| + function f() { f(); } |
| + f(); |
| + } |
| + |
| PrivateScriptTestPrototype.addIntegerForPrivateScriptOnly = function(value1, value2) { |
| return value1 + value2; |
| } |