mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	As per IETF, annotation keys may only consist of lowercase letters, dashes, and digits, and an optional leading underscore. Uppercase letters are non-syntactical. Add tests covering this.
		
			
				
	
	
		
			23 lines
		
	
	
		
			653 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			653 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
esid: sec-temporal.plaindate.from
 | 
						|
description: Annotation keys are lowercase-only 
 | 
						|
features: [Temporal]
 | 
						|
---*/
 | 
						|
 | 
						|
const invalidStrings = [
 | 
						|
  ["1970-01-01[U-CA=iso8601]", "invalid capitalized key"],
 | 
						|
  ["1970-01-01[u-CA=iso8601]", "invalid partially-capitalized key"],
 | 
						|
  ["1970-01-01[FOO=bar]", "invalid capitalized unrecognized key"],
 | 
						|
];
 | 
						|
 | 
						|
invalidStrings.forEach(([arg, descr]) => {
 | 
						|
  assert.throws(
 | 
						|
    RangeError,
 | 
						|
    () => Temporal.PlainDate.from(arg),
 | 
						|
    `annotation keys must be lowercase: ${arg} - ${descr}`
 | 
						|
  );
 | 
						|
});
 |