| OLD | NEW |
| 1 {"tests": [ | 1 {"tests": [ |
| 2 | 2 |
| 3 {"description":"Correct Doctype lowercase", | 3 {"description":"Correct Doctype lowercase", |
| 4 "input":"<!DOCTYPE html>", | 4 "input":"<!DOCTYPE html>", |
| 5 "output":[["DOCTYPE", "html", null, null, true]]}, | 5 "output":[["DOCTYPE", "html", null, null, true]]}, |
| 6 | 6 |
| 7 {"description":"Correct Doctype uppercase", | 7 {"description":"Correct Doctype uppercase", |
| 8 "input":"<!DOCTYPE HTML>", | 8 "input":"<!DOCTYPE HTML>", |
| 9 "output":[["DOCTYPE", "html", null, null, true]]}, | 9 "output":[["DOCTYPE", "html", null, null, true]]}, |
| 10 | 10 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 | 187 |
| 188 {"description":"plaintext element", | 188 {"description":"plaintext element", |
| 189 "input":"<plaintext>foobar", | 189 "input":"<plaintext>foobar", |
| 190 "output":[["StartTag","plaintext",{}], ["Character","foobar"]]}, | 190 "output":[["StartTag","plaintext",{}], ["Character","foobar"]]}, |
| 191 | 191 |
| 192 {"description":"Open angled bracket in unquoted attribute value state", | 192 {"description":"Open angled bracket in unquoted attribute value state", |
| 193 "input":"<a a=f<>", | 193 "input":"<a a=f<>", |
| 194 "output":["ParseError", ["StartTag", "a", {"a":"f<"}]]} | 194 "output":["ParseError", ["StartTag", "a", {"a":"f<"}]]} |
| 195 | 195 |
| 196 ]} | 196 ]} |
| OLD | NEW |