2007-06-12 06:33:06 +02:00
|
|
|
{"tests": [
|
|
|
|
|
|
|
|
{"description": "bare text with leading spaces",
|
|
|
|
"options": {"strip_whitespace": true},
|
|
|
|
"input": [["Characters", "\t\r\n\u000B\u000C foo"]],
|
2007-08-30 19:19:10 +02:00
|
|
|
"expected": [" foo"]
|
2007-06-12 06:33:06 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
{"description": "bare text with trailing spaces",
|
|
|
|
"options": {"strip_whitespace": true},
|
|
|
|
"input": [["Characters", "foo \t\r\n\u000B\u000C"]],
|
2007-08-30 19:19:10 +02:00
|
|
|
"expected": ["foo "]
|
2007-06-12 06:33:06 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
{"description": "bare text with inner spaces",
|
|
|
|
"options": {"strip_whitespace": true},
|
|
|
|
"input": [["Characters", "foo \t\r\n\u000B\u000C bar"]],
|
|
|
|
"expected": ["foo bar"]
|
|
|
|
},
|
|
|
|
|
|
|
|
{"description": "text within <pre>",
|
|
|
|
"options": {"strip_whitespace": true},
|
|
|
|
"input": [["StartTag", "pre", {}], ["Characters", "\t\r\n\u000B\u000C foo \t\r\n\u000B\u000C bar \t\r\n\u000B\u000C"], ["EndTag", "pre"]],
|
|
|
|
"expected": ["<pre>\t\r\n\u000B\u000C foo \t\r\n\u000B\u000C bar \t\r\n\u000B\u000C</pre>"]
|
|
|
|
},
|
|
|
|
|
|
|
|
{"description": "text within <pre>, with inner markup",
|
|
|
|
"options": {"strip_whitespace": true},
|
|
|
|
"input": [["StartTag", "pre", {}], ["Characters", "\t\r\n\u000B\u000C fo"], ["StartTag", "span", {}], ["Characters", "o \t\r\n\u000B\u000C b"], ["EndTag", "span"], ["Characters", "ar \t\r\n\u000B\u000C"], ["EndTag", "pre"]],
|
|
|
|
"expected": ["<pre>\t\r\n\u000B\u000C fo<span>o \t\r\n\u000B\u000C b</span>ar \t\r\n\u000B\u000C</pre>"]
|
|
|
|
},
|
|
|
|
|
|
|
|
{"description": "text within <textarea>",
|
|
|
|
"options": {"strip_whitespace": true},
|
|
|
|
"input": [["StartTag", "textarea", {}], ["Characters", "\t\r\n\u000B\u000C foo \t\r\n\u000B\u000C bar \t\r\n\u000B\u000C"], ["EndTag", "textarea"]],
|
|
|
|
"expected": ["<textarea>\t\r\n\u000B\u000C foo \t\r\n\u000B\u000C bar \t\r\n\u000B\u000C</textarea>"]
|
|
|
|
},
|
|
|
|
|
|
|
|
{"description": "text within <script>",
|
|
|
|
"options": {"strip_whitespace": true},
|
|
|
|
"input": [["StartTag", "script", {}], ["Characters", "\t\r\n\u000B\u000C foo \t\r\n\u000B\u000C bar \t\r\n\u000B\u000C"], ["EndTag", "script"]],
|
|
|
|
"expected": ["<script>\t\r\n\u000B\u000C foo \t\r\n\u000B\u000C bar \t\r\n\u000B\u000C</script>"]
|
|
|
|
},
|
|
|
|
|
|
|
|
{"description": "text within <style>",
|
|
|
|
"options": {"strip_whitespace": true},
|
|
|
|
"input": [["StartTag", "style", {}], ["Characters", "\t\r\n\u000B\u000C foo \t\r\n\u000B\u000C bar \t\r\n\u000B\u000C"], ["EndTag", "style"]],
|
|
|
|
"expected": ["<style>\t\r\n\u000B\u000C foo \t\r\n\u000B\u000C bar \t\r\n\u000B\u000C</style>"]
|
|
|
|
}
|
|
|
|
|
|
|
|
]}
|