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

Side by Side Diff: test/webkit/fast/js/kde/inbuilt_function_proto.js

Issue 68133016: Implements ES6 String.prototype.normalize method. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Implemented review feedback: CHECK_OBJECT_COERCIBLE macro to check for null/undefined. Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 1. Redistributions of source code must retain the above copyright 7 // 1. Redistributions of source code must retain the above copyright
8 // notice, this list of conditions and the following disclaimer. 8 // notice, this list of conditions and the following disclaimer.
9 // 2. Redistributions in binary form must reproduce the above copyright 9 // 2. Redistributions in binary form must reproduce the above copyright
10 // notice, this list of conditions and the following disclaimer in the 10 // notice, this list of conditions and the following disclaimer in the
(...skipping 25 matching lines...) Expand all
36 shouldBe("Array.prototype.sort.__proto__","Function.prototype"); 36 shouldBe("Array.prototype.sort.__proto__","Function.prototype");
37 shouldBe("Array.prototype.splice.__proto__","Function.prototype"); 37 shouldBe("Array.prototype.splice.__proto__","Function.prototype");
38 shouldBe("Array.prototype.unshift.__proto__","Function.prototype"); 38 shouldBe("Array.prototype.unshift.__proto__","Function.prototype");
39 shouldBe("String.prototype.toString.__proto__","Function.prototype"); 39 shouldBe("String.prototype.toString.__proto__","Function.prototype");
40 shouldBe("String.prototype.valueOf.__proto__","Function.prototype"); 40 shouldBe("String.prototype.valueOf.__proto__","Function.prototype");
41 shouldBe("String.prototype.charAt.__proto__","Function.prototype"); 41 shouldBe("String.prototype.charAt.__proto__","Function.prototype");
42 shouldBe("String.prototype.charCodeAt.__proto__","Function.prototype"); 42 shouldBe("String.prototype.charCodeAt.__proto__","Function.prototype");
43 shouldBe("String.prototype.indexOf.__proto__","Function.prototype"); 43 shouldBe("String.prototype.indexOf.__proto__","Function.prototype");
44 shouldBe("String.prototype.lastIndexOf.__proto__","Function.prototype"); 44 shouldBe("String.prototype.lastIndexOf.__proto__","Function.prototype");
45 shouldBe("String.prototype.match.__proto__","Function.prototype"); 45 shouldBe("String.prototype.match.__proto__","Function.prototype");
46 shouldBe("String.prototype.normalize.__proto__","Function.prototype");
46 shouldBe("String.prototype.replace.__proto__","Function.prototype"); 47 shouldBe("String.prototype.replace.__proto__","Function.prototype");
47 shouldBe("String.prototype.search.__proto__","Function.prototype"); 48 shouldBe("String.prototype.search.__proto__","Function.prototype");
48 shouldBe("String.prototype.slice.__proto__","Function.prototype"); 49 shouldBe("String.prototype.slice.__proto__","Function.prototype");
49 shouldBe("String.prototype.split.__proto__","Function.prototype"); 50 shouldBe("String.prototype.split.__proto__","Function.prototype");
50 shouldBe("String.prototype.substr.__proto__","Function.prototype"); 51 shouldBe("String.prototype.substr.__proto__","Function.prototype");
51 shouldBe("String.prototype.substring.__proto__","Function.prototype"); 52 shouldBe("String.prototype.substring.__proto__","Function.prototype");
52 shouldBe("String.prototype.toLowerCase.__proto__","Function.prototype"); 53 shouldBe("String.prototype.toLowerCase.__proto__","Function.prototype");
53 shouldBe("String.prototype.toUpperCase.__proto__","Function.prototype"); 54 shouldBe("String.prototype.toUpperCase.__proto__","Function.prototype");
54 shouldBe("String.prototype.big.__proto__","Function.prototype"); 55 shouldBe("String.prototype.big.__proto__","Function.prototype");
55 shouldBe("String.prototype.small.__proto__","Function.prototype"); 56 shouldBe("String.prototype.small.__proto__","Function.prototype");
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 shouldBe("Date.prototype.setUTCMonth.__proto__","Function.prototype"); 109 shouldBe("Date.prototype.setUTCMonth.__proto__","Function.prototype");
109 shouldBe("Date.prototype.setFullYear.__proto__","Function.prototype"); 110 shouldBe("Date.prototype.setFullYear.__proto__","Function.prototype");
110 shouldBe("Date.prototype.setUTCFullYear.__proto__","Function.prototype"); 111 shouldBe("Date.prototype.setUTCFullYear.__proto__","Function.prototype");
111 shouldBe("Date.prototype.setYear.__proto__","Function.prototype"); 112 shouldBe("Date.prototype.setYear.__proto__","Function.prototype");
112 shouldBe("Date.prototype.getYear.__proto__","Function.prototype"); 113 shouldBe("Date.prototype.getYear.__proto__","Function.prototype");
113 shouldBe("Date.prototype.toGMTString.__proto__","Function.prototype"); 114 shouldBe("Date.prototype.toGMTString.__proto__","Function.prototype");
114 shouldBe("RegExp.prototype.exec.__proto__","Function.prototype"); 115 shouldBe("RegExp.prototype.exec.__proto__","Function.prototype");
115 shouldBe("RegExp.prototype.test.__proto__","Function.prototype"); 116 shouldBe("RegExp.prototype.test.__proto__","Function.prototype");
116 shouldBe("RegExp.prototype.toString.__proto__","Function.prototype"); 117 shouldBe("RegExp.prototype.toString.__proto__","Function.prototype");
117 shouldBe("Error.prototype.toString.__proto__","Function.prototype"); 118 shouldBe("Error.prototype.toString.__proto__","Function.prototype");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698