Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(776)

Unified Diff: src/math.js

Issue 6489027: Fix http://code.google.com/p/chromium/issues/detail?id=72555 incorrect... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/math.js
===================================================================
--- src/math.js (revision 6701)
+++ src/math.js (working copy)
@@ -201,7 +201,7 @@
%OptimizeObjectForAddingMultipleProperties($Math, 8);
%SetProperty($Math,
"E",
- 2.7182818284590452354,
+ 2.718281828459045,
Mads Ager (chromium) 2011/02/11 11:06:57 We could keep the extra digits on this one to matc
DONT_ENUM | DONT_DELETE | READ_ONLY);
// ECMA-262, section 15.8.1.2.
%SetProperty($Math,
@@ -220,11 +220,11 @@
DONT_ENUM | DONT_DELETE | READ_ONLY);
%SetProperty($Math,
"LOG10E",
- 0.43429448190325176,
+ 0.4342944819032518,
DONT_ENUM | DONT_DELETE | READ_ONLY);
%SetProperty($Math,
"PI",
- 3.1415926535897932,
+ 3.141592653589793,
Mads Ager (chromium) 2011/02/11 11:06:57 Ditto.
DONT_ENUM | DONT_DELETE | READ_ONLY);
%SetProperty($Math,
"SQRT1_2",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698