Skip to content
Snippets Groups Projects
Commit f2b47a7f authored by Mark Miller's avatar Mark Miller
Browse files
parent d1f98e10
No related branches found
No related tags found
No related merge requests found
...@@ -102,8 +102,6 @@ ...@@ -102,8 +102,6 @@
<test id="S12.6.2_A13_T2">https://bugs.ecmascript.org/show_bug.cgi?id=80</test> <test id="S12.6.2_A13_T2">https://bugs.ecmascript.org/show_bug.cgi?id=80</test>
<test id="S12.6.4_A13_T1">https://bugs.ecmascript.org/show_bug.cgi?id=80</test> <test id="S12.6.4_A13_T1">https://bugs.ecmascript.org/show_bug.cgi?id=80</test>
<test id="S12.6.4_A13_T2">https://bugs.ecmascript.org/show_bug.cgi?id=80</test> <test id="S12.6.4_A13_T2">https://bugs.ecmascript.org/show_bug.cgi?id=80</test>
<test id="S7.8.4_A4.3_T3">https://bugs.ecmascript.org/show_bug.cgi?id=80</test>
<test id="S7.8.4_A4.3_T4">https://bugs.ecmascript.org/show_bug.cgi?id=80</test>
<test id="S15.5.4.10_A1_T3">https://bugs.ecmascript.org/show_bug.cgi?id=23</test> <test id="S15.5.4.10_A1_T3">https://bugs.ecmascript.org/show_bug.cgi?id=23</test>
...@@ -118,10 +116,6 @@ ...@@ -118,10 +116,6 @@
<test id="15.4.4.4-5-c-i-1">https://bugs.ecmascript.org/show_bug.cgi?id=69</test> <test id="15.4.4.4-5-c-i-1">https://bugs.ecmascript.org/show_bug.cgi?id=69</test>
<!-- Extension clause -->
<test id="S7.8.4_A4.3_T5">https://bugs.ecmascript.org/show_bug.cgi?id=127</test>
<test id="S7.8.4_A4.3_T6">https://bugs.ecmascript.org/show_bug.cgi?id=127</test>
<test id="S15.10.2.12_A1_T1">https://bugs.ecmascript.org/show_bug.cgi?id=60</test> <test id="S15.10.2.12_A1_T1">https://bugs.ecmascript.org/show_bug.cgi?id=60</test>
<test id="S15.10.2.12_A2_T1">https://bugs.ecmascript.org/show_bug.cgi?id=60</test> <test id="S15.10.2.12_A2_T1">https://bugs.ecmascript.org/show_bug.cgi?id=60</test>
......
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S7.8.4_A4.3_T3;
* @section: 7.8.4;
* @assertion: NonEscapeSequence is not EscapeCharacter;
* @description: EscapeCharacter :: DecimalDigits :: 8;
* @negative
*/
//CHECK#1
"\8"
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S7.8.4_A4.3_T4;
* @section: 7.8.4;
* @assertion: NonEscapeSequence is not EscapeCharacter;
* @description: EscapeCharacter :: DecimalDigits :: 9;
* @negative
*/
//CHECK#1
"\9"
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S7.8.4_A4.3_T5;
* @section: 7.8.4;
* @assertion: NonEscapeSequence is not EscapeCharacter;
* @description: EscapeCharacter :: u;
* @negative
*/
//CHECK#1
"\u"
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S7.8.4_A4.3_T6;
* @section: 7.8.4;
* @assertion: NonEscapeSequence is not EscapeCharacter;
* @description: EscapeCharacter :: x;
* @negative
*/
//CHECK#1
"\x"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment