2014-07-22 01:09:02 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2012-08-10 00:02:49 +02:00
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 6.1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Test for handling of supplementary characters
|
|
|
|
---*/
|
2012-08-10 00:02:49 +02:00
|
|
|
|
|
|
|
var chars = "𐒠"; // Single Unicode character at codepoint \u{104A0}
|
|
|
|
if(chars.length !== 2) {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error("A character outside the BMP (Unicode CodePoint > 0xFFFF) should consume two code units");
|
2012-08-10 00:02:49 +02:00
|
|
|
}
|
|
|
|
if(chars.charCodeAt(0) !== 0xD801) {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error("First code unit of surrogate pair for 0x104A0 should be 0xD801");
|
2012-08-10 00:02:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(chars.charCodeAt(1) !== 0xDCA0) {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error("Second code unit of surrogate pair for 0x104A0 should be 0xDCA0");
|
2012-08-10 00:02:49 +02:00
|
|
|
}
|