summaryrefslogtreecommitdiff
path: root/test/data/tokeniser2/regression.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/tokeniser2/regression.test')
-rw-r--r--test/data/tokeniser2/regression.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/data/tokeniser2/regression.test b/test/data/tokeniser2/regression.test
index ae3e66a..59fda3f 100644
--- a/test/data/tokeniser2/regression.test
+++ b/test/data/tokeniser2/regression.test
@@ -1,11 +1,11 @@
{"tests": [
-{"description":"CR in double-quoted attribute value",
-"input":"<foo bar=\"\r\u2022xyz\"",
+{"description":"CR in double-quoted attribute value. This test has been changes manually from <foo bar=\"\r\u2022xyz\" to <foo bar=\"\r\u2022xyz\">",
+"input":"<foo bar=\"\r\u2022xyz\">",
"output":[["StartTag", "foo", {"bar":"\n\u2022xyz"}]]},
-{"description":"CR in single-quoted attribute value",
-"input":"<foo bar='\r\u2022xyz'",
+{"description":"CR in single-quoted attribute value. The input has manually been changed from <foo bar='\r\u2022xyz'> <foo bar='\r\u2022xyz'>",
+"input":"<foo bar='\r\u2022xyz'>",
"output":[["StartTag", "foo", {"bar":"\n\u2022xyz"}]]},
{"description":"CR in comment",