Index: src/string.js |
=================================================================== |
--- src/string.js (revision 1832) |
+++ src/string.js (working copy) |
@@ -831,7 +831,9 @@ |
// Setup the non-enumerable functions on the String prototype object. |
- InstallFunctions($String.prototype, DONT_ENUM, $Array( |
+ // Use DONT_DELETE due to |
+ // http://code.google.com/p/chromium/issues/detail?id=1717 |
+ InstallFunctions($String.prototype, DONT_ENUM | DONT_DELETE, $Array( |
"valueOf", StringValueOf, |
"toString", StringToString, |
"charAt", StringCharAt, |