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

Unified Diff: test/webkit/fast/js/kde/RegExp-expected.txt

Issue 1423993006: RegExp.prototype is an ordinary object. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 5 years, 2 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/test262/test262.status ('k') | test/webkit/fast/regex/toString-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/webkit/fast/js/kde/RegExp-expected.txt
diff --git a/test/webkit/fast/js/kde/RegExp-expected.txt b/test/webkit/fast/js/kde/RegExp-expected.txt
index cf39931d531743ba4cc1abcc94a19e41e7b3b195..a3e1f1c44bad7af64967bd4f8653193c1438f5d2 100644
--- a/test/webkit/fast/js/kde/RegExp-expected.txt
+++ b/test/webkit/fast/js/kde/RegExp-expected.txt
@@ -113,8 +113,8 @@ PASS str.match(re).toString() is 'Chapter 3.4.5.1,Chapter 3.4.5.1,.1'
PASS str.match(/d/gi).toString() is 'D,d'
PASS /\u0061/.source is '\\u0061'
PASS 'abc'.match(/\u0062/).toString() is 'b'
-PASS Object.prototype.toString.apply(RegExp.prototype) is '[object RegExp]'
-PASS typeof RegExp.prototype.toString() is 'string'
+FAIL Object.prototype.toString.apply(RegExp.prototype) should be [object RegExp]. Was [object Object].
+FAIL typeof RegExp.prototype.toString() should be string. Threw exception TypeError: Method RegExp.prototype.toString called on incompatible receiver [object Object]
PASS new RegExp().toString() is '/(?:)/'
PASS (new RegExp('(?:)')).source is '(?:)'
PASS /(?:)/.toString() is '/(?:)/'
« no previous file with comments | « test/test262/test262.status ('k') | test/webkit/fast/regex/toString-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698