Index: LayoutTests/fast/regex/invalid-range-in-class-expected.txt |
diff --git a/LayoutTests/fast/regex/invalid-range-in-class-expected.txt b/LayoutTests/fast/regex/invalid-range-in-class-expected.txt |
deleted file mode 100644 |
index bb84b6e34439fca8998ed85c4fd3d359908dcaa5..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regex/invalid-range-in-class-expected.txt |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-This page tests invalid character ranges in character classes. |
- |
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
- |
- |
-PASS /[a-c]+/.exec("-acbd"); is ["acb"] |
-PASS /[a\-c]+/.exec("-acbd") is ["-ac"] |
-PASS /[c-a]+/.exec("-acbd"); threw exception SyntaxError: Invalid regular expression: range out of order in character class. |
-PASS /[\d-x]+/.exec("1-3xy"); is ["1-3x"] |
-PASS /[x-\d]+/.exec("1-3xy"); is ["1-3x"] |
-PASS /[\d-\d]+/.exec("1-3xy"); is ["1-3"] |
-PASS /[\d-a-z]+/.exec("az1-3y"); is ["az1-3"] |
-PASS /[\d\-x]+/.exec("1-3xy"); is ["1-3x"] |
-PASS /[x\-\d]+/.exec("1-3xy"); is ["1-3x"] |
-PASS /[\d\-\d]+/.exec("1-3xy"); is ["1-3"] |
-PASS /[\d-]+/.exec("1-3xy") is ["1-3"] |
-PASS successfullyParsed is true |
- |
-TEST COMPLETE |
- |