OLD | NEW |
(Empty) | |
| 1 <Läufer>foo</Läufer> |
| 2 <tag läufer="läufer"> |
| 3 <läufer:tag>baz</läufer:tag> |
| 4 |
| 5 ---------------------------------------------------- |
| 6 |
| 7 [ |
| 8 ["tag", [ |
| 9 ["tag", [ |
| 10 ["punctuation", "<"], |
| 11 "Läufer" |
| 12 ]], |
| 13 ["punctuation", ">"] |
| 14 ]], |
| 15 "foo", |
| 16 ["tag", [ |
| 17 ["tag", [ |
| 18 ["punctuation", "</"], |
| 19 "Läufer" |
| 20 ]], |
| 21 ["punctuation", ">"] |
| 22 ]], |
| 23 |
| 24 ["tag", [ |
| 25 ["tag", [ |
| 26 ["punctuation", "<"], |
| 27 "tag" |
| 28 ]], |
| 29 ["attr-name", [ |
| 30 "läufer" |
| 31 ]], |
| 32 ["attr-value", [ |
| 33 ["punctuation", "="], |
| 34 ["punctuation", "\""], |
| 35 "läufer", |
| 36 ["punctuation", "\""] |
| 37 ]], |
| 38 ["punctuation", ">"] |
| 39 ]], |
| 40 |
| 41 ["tag", [ |
| 42 ["tag", [ |
| 43 ["punctuation", "<"], |
| 44 ["namespace", "läufer:"], |
| 45 "tag" |
| 46 ]], |
| 47 ["punctuation", ">"] |
| 48 ]], |
| 49 "baz", |
| 50 ["tag", [ |
| 51 ["tag", [ |
| 52 ["punctuation", "</"], |
| 53 ["namespace", "läufer:"], |
| 54 "tag" |
| 55 ]], |
| 56 ["punctuation", ">"] |
| 57 ]] |
| 58 ] |
| 59 |
| 60 ---------------------------------------------------- |
| 61 |
| 62 Checks for tags, attributes and namespaces containing unicode characters. |
| 63 See #585 for details. |
OLD | NEW |