mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | try { | ||
|  |   assert(typeof this === "object"); | ||
|  |   assert(this === global); | ||
|  | 
 | ||
|  |   function Foo() { | ||
|  |     this.x = 5; | ||
|  |     assert(typeof this === "object"); | ||
|  |     assert(this.x === 5); | ||
|  |   } | ||
|  | 
 | ||
|  |   new Foo(); | ||
|  |   console.log("PASS"); | ||
|  | } catch (err) { | ||
|  |   console.log("FAIL: " + err); | ||
|  | } |