summaryrefslogtreecommitdiffhomepage
path: root/libs/html5lib/tests/serializer-testdata/whitespace.test
blob: dac3a69e27f824bc5aaf08461bb074d65570461a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
    "tests": [
        {
            "expected": [
                " foo"
            ],
            "input": [
                [
                    "Characters",
                    "\t\r\n\f foo"
                ]
            ],
            "description": "bare text with leading spaces",
            "options": {
                "strip_whitespace": true
            }
        },
        {
            "expected": [
                "foo "
            ],
            "input": [
                [
                    "Characters",
                    "foo \t\r\n\f"
                ]
            ],
            "description": "bare text with trailing spaces",
            "options": {
                "strip_whitespace": true
            }
        },
        {
            "expected": [
                "foo bar"
            ],
            "input": [
                [
                    "Characters",
                    "foo \t\r\n\f bar"
                ]
            ],
            "description": "bare text with inner spaces",
            "options": {
                "strip_whitespace": true
            }
        },
        {
            "expected": [
                "<pre>\t\r\n\f foo \t\r\n\f bar \t\r\n\f</pre>"
            ],
            "input": [
                [
                    "StartTag",
                    "http://www.w3.org/1999/xhtml",
                    "pre",
                    {}
                ],
                [
                    "Characters",
                    "\t\r\n\f foo \t\r\n\f bar \t\r\n\f"
                ],
                [
                    "EndTag",
                    "http://www.w3.org/1999/xhtml",
                    "pre"
                ]
            ],
            "description": "text within <pre>",
            "options": {
                "strip_whitespace": true
            }
        },
        {
            "expected": [
                "<pre>\t\r\n\f fo<span>o \t\r\n\f b</span>ar \t\r\n\f</pre>"
            ],
            "input": [
                [
                    "StartTag",
                    "http://www.w3.org/1999/xhtml",
                    "pre",
                    {}
                ],
                [
                    "Characters",
                    "\t\r\n\f fo"
                ],
                [
                    "StartTag",
                    "http://www.w3.org/1999/xhtml",
                    "span",
                    {}
                ],
                [
                    "Characters",
                    "o \t\r\n\f b"
                ],
                [
                    "EndTag",
                    "http://www.w3.org/1999/xhtml",
                    "span"
                ],
                [
                    "Characters",
                    "ar \t\r\n\f"
                ],
                [
                    "EndTag",
                    "http://www.w3.org/1999/xhtml",
                    "pre"
                ]
            ],
            "description": "text within <pre>, with inner markup",
            "options": {
                "strip_whitespace": true
            }
        },
        {
            "expected": [
                "<textarea>\t\r\n\f foo \t\r\n\f bar \t\r\n\f</textarea>"
            ],
            "input": [
                [
                    "StartTag",
                    "http://www.w3.org/1999/xhtml",
                    "textarea",
                    {}
                ],
                [
                    "Characters",
                    "\t\r\n\f foo \t\r\n\f bar \t\r\n\f"
                ],
                [
                    "EndTag",
                    "http://www.w3.org/1999/xhtml",
                    "textarea"
                ]
            ],
            "description": "text within <textarea>",
            "options": {
                "strip_whitespace": true
            }
        },
        {
            "expected": [
                "<script>\t\r\n\f foo \t\r\n\f bar \t\r\n\f</script>"
            ],
            "input": [
                [
                    "StartTag",
                    "http://www.w3.org/1999/xhtml",
                    "script",
                    {}
                ],
                [
                    "Characters",
                    "\t\r\n\f foo \t\r\n\f bar \t\r\n\f"
                ],
                [
                    "EndTag",
                    "http://www.w3.org/1999/xhtml",
                    "script"
                ]
            ],
            "description": "text within <script>",
            "options": {
                "strip_whitespace": true
            }
        },
        {
            "expected": [
                "<style>\t\r\n\f foo \t\r\n\f bar \t\r\n\f</style>"
            ],
            "input": [
                [
                    "StartTag",
                    "http://www.w3.org/1999/xhtml",
                    "style",
                    {}
                ],
                [
                    "Characters",
                    "\t\r\n\f foo \t\r\n\f bar \t\r\n\f"
                ],
                [
                    "EndTag",
                    "http://www.w3.org/1999/xhtml",
                    "style"
                ]
            ],
            "description": "text within <style>",
            "options": {
                "strip_whitespace": true
            }
        }
    ]
}