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

Unified Diff: test/mjsunit/regress/regress-crbug-158185.js

Issue 11362114: Merged r12816, r12826, r12830 into 3.14 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.14
Patch Set: Created 8 years, 1 month 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 | « test/mjsunit/regress/regress-crbug-157520.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-158185.js
diff --git a/test/mjsunit/regress/regress-crbug-142087.js b/test/mjsunit/regress/regress-crbug-158185.js
similarity index 78%
copy from test/mjsunit/regress/regress-crbug-142087.js
copy to test/mjsunit/regress/regress-crbug-158185.js
index 881ca60fba3d86827bb681c771fe10b9e06fa96c..5cb5900c8a0a5b97246d4c7bc931d3b5b11f94ab 100644
--- a/test/mjsunit/regress/regress-crbug-142087.js
+++ b/test/mjsunit/regress/regress-crbug-158185.js
@@ -25,14 +25,14 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-var string = "What are you looking for?";
+assertEquals("0023456",
+ Object.keys(JSON.parse('{"0023456": 1}'))[0]);
+assertEquals("1234567890123",
+ Object.keys(JSON.parse('{"1234567890123": 1}'))[0]);
+assertEquals("123456789ABCD",
+ Object.keys(JSON.parse('{"123456789ABCD": 1}'))[0]);
+assertEquals("12A",
+ Object.keys(JSON.parse('{"12A": 1}'))[0]);
-var expected_match = [""];
-for (var i = 0; i < string.length; i++) {
- expected_match.push("");
-}
-
-string.replace(/(_)|(_|)/g, "");
-assertArrayEquals(expected_match, string.match(/(_)|(_|)/g, ""));
-
-'***************************************'.match(/((\\)|(\*)|(\$))/g, ".");
+assertEquals(1, JSON.parse('{"0":1}')[0]);
+assertEquals(undefined, JSON.parse('{"00":1}')[0]);
« no previous file with comments | « test/mjsunit/regress/regress-crbug-157520.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698