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

Side by Side Diff: LayoutTests/ietestcenter/Javascript/TestCases/11.1.5_4-4-d-1.js

Issue 467903003: Remove duplicate property test (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove tests instead Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /// Copyright (c) 2009 Microsoft Corporation
2 ///
3 /// Redistribution and use in source and binary forms, with or without modificat ion, are permitted provided
4 /// that the following conditions are met:
5 /// * Redistributions of source code must retain the above copyright notice, this list of conditions and
6 /// the following disclaimer.
7 /// * Redistributions in binary form must reproduce the above copyright notic e, this list of conditions and
8 /// the following disclaimer in the documentation and/or other materials pr ovided with the distribution.
9 /// * Neither the name of Microsoft nor the names of its contributors may be used to
10 /// endorse or promote products derived from this software without specific prior written permission.
11 ///
12 /// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
13 /// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 /// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWN ER OR CONTRIBUTORS BE LIABLE
15 /// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL D AMAGES (INCLUDING, BUT NOT
16 /// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
17 /// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONT RACT, STRICT LIABILITY,
18 /// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US E OF THIS SOFTWARE, EVEN IF
19 /// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
20
21
22 /*
23 Refer 11.1.5;
24 The production
25 PropertyNameAndValueList : PropertyNameAndValueList , PropertyAssignment
26 4. If previous is not undefined then throw a SyntaxError exception if any of t he following conditions are true
27 d. IsAccessorDescriptor(previous) is true and IsAccessorDescriptor(propId.de scriptor) is true and either both previous and propId.descriptor have [[Get]] fi elds or both previous and propId.descriptor have [[Set]] fields
28 */
29
30 ES5Harness.registerTest( {
31 id: "11.1.5_4-4-d-1",
32
33 path: "TestCases/chapter11/11.1/11.1.5/11.1.5_4-4-d-1.js",
34
35 description: "Object literal - SyntaxError for duplicate property name (get,get) ",
36
37 test: function testcase() {
38 try
39 {
40 eval("({get foo(){}, get foo(){}});");
41 }
42 catch(e)
43 {
44 if(e instanceof SyntaxError)
45 return true;
46 }
47 },
48 precondition: function () {
49 //accessor properties in object literals must be allowed
50 try {eval("({set foo(x) {}, get foo(){}});");}
51 catch(e) {return false}
52 return true;
53 }
54
55 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698