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

Side by Side Diff: LayoutTests/ietestcenter/Javascript/TestCases/11.1.5_4-4-b-2.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 the following conditions are true
27 b.IsDataDescriptor(previous) is true and IsAccessorDescriptor(propId.descri ptor) is true.
28 */
29
30 ES5Harness.registerTest( {
31 id: "11.1.5_4-4-b-2",
32
33 path: "TestCases/chapter11/11.1/11.1.5/11.1.5_4-4-b-2.js",
34
35 description: "Object literal - SyntaxError if a data property definition is foll owed by set accessor definition with the same name",
36
37 test: function testcase() {
38 try
39 {
40 eval("({foo : 1, set foo(x){}});");
41 }
42 catch(e)
43 {
44 if(e instanceof SyntaxError)
45 return true;
46 }
47 },
48
49 precondition: function () {
50 //accessor properties in object literals must be allowed
51 try {eval("({set foo(x) {}, get foo(){}});");}
52 catch(e) {return false}
53 return true;
54 }
55 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698