Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
test262
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pmaksimo
test262
Commits
48b4aa66
Commit
48b4aa66
authored
6 years ago
by
Richard Gibson
Browse files
Options
Downloads
Patches
Plain Diff
Remove no-longer-valid tests
parent
83d81532
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/language/line-terminators/S7.3_A2.3.js
+0
-12
0 additions, 12 deletions
test/language/line-terminators/S7.3_A2.3.js
test/language/line-terminators/S7.3_A2.4.js
+0
-13
0 additions, 13 deletions
test/language/line-terminators/S7.3_A2.4.js
with
0 additions
and
25 deletions
test/language/line-terminators/S7.3_A2.3.js
deleted
100644 → 0
+
0
−
12
View file @
83d81532
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: LINE SEPARATOR (U+2028) within strings is not allowed
es5id: 7.3_A2.3
description: Insert LINE SEPARATOR (\u2028) into string
---*/
assert
.
throws
(
SyntaxError
,
function
()
{
eval
(
"
'
\
u2028str
\
u2028ing
\
u2028'
"
);
});
This diff is collapsed.
Click to expand it.
test/language/line-terminators/S7.3_A2.4.js
deleted
100644 → 0
+
0
−
13
View file @
83d81532
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: PARAGRAPH SEPARATOR (U+2029) within strings is not allowed
es5id: 7.3_A2.4
description: Insert PARAGRAPH SEPARATOR (\u2029) into string
---*/
// CHECK#1
assert
.
throws
(
SyntaxError
,
function
()
{
eval
(
"
'
\
u2029str
\
u2029ing
\
u2029'
"
);
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment