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

Unified Diff: test/webkit/fast/js/regexp-unicode-handling-expected.txt

Issue 20280003: Migrate more tests from blink repository. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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 | « test/webkit/fast/js/regexp-unicode-handling.js ('k') | test/webkit/fast/js/reserved-words-strict.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/webkit/fast/js/regexp-unicode-handling-expected.txt
diff --git a/test/webkit/fast/js/regexp-unicode-handling-expected.txt b/test/webkit/fast/js/regexp-unicode-handling-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..079119614598066e31f07eeded56ec2d54a8f34f
--- /dev/null
+++ b/test/webkit/fast/js/regexp-unicode-handling-expected.txt
@@ -0,0 +1,72 @@
+# Copyright 2013 the V8 project authors. All rights reserved.
+# Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
+# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Test for proper handling of Unicode RegExps and bug 7445: Gmail puts wrong subject in replies.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS cy('Re: Moose') is 'Moose'
+PASS cy('\u8f6c\u53d1: Moose') is 'Moose'
+PASS inlineRe.source is newFromInlineRe.source
+PASS inlineRe.source is evalFromInlineRe.source
+PASS inlineRe.source is evalInlineRe.source
+PASS inlineRe.source is newFromEvalInlineRe.source
+PASS inlineRe.source is evalFromEvalInlineRe.source
+PASS inlineRe.source is explicitRe.source
+PASS inlineRe.source is newFromExplicitRe.source
+PASS inlineRe.source is evalFromExplicitRe.source
+PASS inlineRe.toString() is newFromInlineRe.toString()
+PASS inlineRe.toString() is evalFromInlineRe.toString()
+PASS inlineRe.toString() is evalInlineRe.toString()
+PASS inlineRe.toString() is newFromEvalInlineRe.toString()
+PASS inlineRe.toString() is evalFromEvalInlineRe.toString()
+PASS inlineRe.toString() is explicitRe.toString()
+PASS inlineRe.toString() is newFromExplicitRe.toString()
+PASS inlineRe.toString() is evalFromExplicitRe.toString()
+PASS inlineRe.exec(sample)[0] is 'bm⠠p'
+PASS evalInlineRe.exec(sample)[0] is 'bm⠠p'
+PASS explicitRe.exec(sample)[0] is 'bm⠠p'
+PASS binlineRe.source is bnewFromInlineRe.source
+PASS binlineRe.source is bevalFromInlineRe.source
+PASS binlineRe.source is bevalInlineRe.source
+PASS binlineRe.source is bnewFromEvalInlineRe.source
+PASS binlineRe.source is bevalFromEvalInlineRe.source
+PASS binlineRe.source is bexplicitRe.source
+PASS binlineRe.source is bnewFromExplicitRe.source
+PASS binlineRe.source is bevalFromExplicitRe.source
+PASS binlineRe.toString() is bnewFromInlineRe.toString()
+PASS binlineRe.toString() is bevalFromInlineRe.toString()
+PASS binlineRe.toString() is bevalInlineRe.toString()
+PASS binlineRe.toString() is bnewFromEvalInlineRe.toString()
+PASS binlineRe.toString() is bevalFromEvalInlineRe.toString()
+PASS binlineRe.toString() is bexplicitRe.toString()
+PASS binlineRe.toString() is bnewFromExplicitRe.toString()
+PASS binlineRe.toString() is bevalFromExplicitRe.toString()
+PASS binlineRe.exec(bsample)[0] is 'bm|p'
+PASS bevalInlineRe.exec(bsample)[0] is 'bm|p'
+PASS bexplicitRe.exec(bsample)[0] is 'bm|p'
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
« no previous file with comments | « test/webkit/fast/js/regexp-unicode-handling.js ('k') | test/webkit/fast/js/reserved-words-strict.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698