Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: LayoutTests/fast/js/script-tests/numeric-escapes-in-string-literals.js

Issue 20867002: Remove old tests that have been migrated to the v8 repo. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove unused script-tests as well Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/js/script-tests/numeric-escapes-in-string-literals.js
diff --git a/LayoutTests/fast/js/script-tests/numeric-escapes-in-string-literals.js b/LayoutTests/fast/js/script-tests/numeric-escapes-in-string-literals.js
deleted file mode 100644
index ceb7b39c074e1e0646e74b5f02f21bfa2fd5c8e4..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/script-tests/numeric-escapes-in-string-literals.js
+++ /dev/null
@@ -1,46 +0,0 @@
-description(
-"Test numeric escapes in string literals - https://bugs.webkit.org/show_bug.cgi?id=51724"
-);
-
-function test(_stringLiteral, _nonStrictResult, _strictResult)
-{
- stringLiteral = '"' + _stringLiteral + '"';
- nonStrictResult = _nonStrictResult;
- shouldBe("eval(stringLiteral)", "nonStrictResult");
-
- stringLiteral = '"use strict"; ' + stringLiteral;
- if (_strictResult) {
- strictResult = _strictResult;
- shouldBe("eval(stringLiteral)", "strictResult");
- } else
- shouldThrow("eval(stringLiteral)");
-}
-
-// Tests for single digit octal and decimal escapes.
-// In non-strict mode 0-7 are octal escapes, 8-9 are NonEscapeCharacters.
-// In strict mode only "\0" is permitted.
-test("\\0", "\x00", "\x00");
-test("\\1", "\x01");
-test("\\7", "\x07");
-test("\\8", "8");
-test("\\9", "9");
-
-// Tests for multi-digit octal values outside strict mode;
-// Octal literals may be 1-3 digits long. In strict more all multi-digit sequences are illegal.
-test("\\00", "\x00");
-test("\\000", "\x00");
-test("\\0000", "\x000");
-
-test("\\01", "\x01");
-test("\\001", "\x01");
-test("\\0001", "\x001");
-
-test("\\10", "\x08");
-test("\\100", "\x40");
-test("\\1000", "\x400");
-
-test("\\19", "\x019");
-test("\\109", "\x089");
-test("\\1009", "\x409");
-
-test("\\99", "99");
« no previous file with comments | « LayoutTests/fast/js/script-tests/number-toprecision.js ('k') | LayoutTests/fast/js/script-tests/object-bad-time.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698