mirror of
https://github.com/tc39/test262.git
synced 2025-08-29 05:48:28 +02:00
28 lines
722 B
JavaScript
28 lines
722 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The RegExp instance multiline property has the attribute ReadOnly
|
|
*
|
|
* @path ch15/15.10/15.10.7/15.10.7.4/S15.10.7.4_A10.js
|
|
* @description Checking if varying the multiline property fails
|
|
*/
|
|
|
|
__re = /\n/;
|
|
|
|
//CHECK#1
|
|
if (__re.hasOwnProperty('multiline') !== true) {
|
|
$FAIL('#1: __re = /\\n/; __re.hasOwnProperty(\'multiline\') === true');
|
|
}
|
|
|
|
__obj = __re.multiline;
|
|
|
|
__re.multiline = "shifted";
|
|
|
|
//CHECK#2
|
|
if (__re.multiline !== __obj) {
|
|
$ERROR('#2: __re = /\\n/; __obj = __re.multiline; __re.multiline = "shifted"; __re.multiline === __obj. Actual: ' + (__re.multiline));
|
|
}
|
|
|
|
|