mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 19:53:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright 2009 the Sputnik authors.  All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| info: |
 | |
|     When the [[Delete]] method of O is called with property name P,
 | |
|     and if O doesn't have a property with name P, return true
 | |
| esid: sec-delete-operator-runtime-semantics-evaluation
 | |
| description: >
 | |
|     Try to delete not existent properties of O, but existent property
 | |
|     of prototype
 | |
| ---*/
 | |
| 
 | |
| function Palette() {}
 | |
| Palette.prototype = {
 | |
|   red: 0xff0000,
 | |
|   green: 0x00ff00,
 | |
| };
 | |
| var __palette = new Palette();
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //CHECK#1
 | |
| if (__palette.red !== 0xff0000) {
 | |
|   throw new Test262Error(
 | |
|     '#1: function Palette(){}; Palette.prototype = {red:0xFF0000, green:0x00FF00}; __palette = new Palette; __palette.red === 0xFF0000. Actual: ' +
 | |
|     __palette.red
 | |
|   );
 | |
| }
 | |
| //
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //CHECK#2
 | |
| if (delete __palette.red !== true) {
 | |
|   throw new Test262Error(
 | |
|     '#2 function Palette(){}; Palette.prototype = {red:0xFF0000, green:0x00FF00}; __palette = new Palette; delete __palette.red === true. Actual: ' +
 | |
|     delete __palette.red
 | |
|   );
 | |
| }
 | |
| //
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //CHECK#3
 | |
| if (__palette.red !== 0xff0000) {
 | |
|   throw new Test262Error(
 | |
|     '#3: function Palette(){}; Palette.prototype = {red:0xFF0000, green:0x00FF00}; __palette = new Palette; __palette.red === 0xFF0000. Actual: ' +
 | |
|     __palette.red
 | |
|   );
 | |
| }
 | |
| //
 | |
| //////////////////////////////////////////////////////////////////////////////
 |