1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/markup/issue585.test
2016-02-03 18:00:01 -05:00

63 lines
No EOL
1.1 KiB
Text

<Läufer>foo</Läufer>
<tag läufer="läufer">
<läufer:tag>baz</läufer:tag>
----------------------------------------------------
[
["tag", [
["tag", [
["punctuation", "<"],
"Läufer"
]],
["punctuation", ">"]
]],
"foo",
["tag", [
["tag", [
["punctuation", "</"],
"Läufer"
]],
["punctuation", ">"]
]],
["tag", [
["tag", [
["punctuation", "<"],
"tag"
]],
["attr-name", [
"läufer"
]],
["attr-value", [
["punctuation", "="],
["punctuation", "\""],
"läufer",
["punctuation", "\""]
]],
["punctuation", ">"]
]],
["tag", [
["tag", [
["punctuation", "<"],
["namespace", "läufer:"],
"tag"
]],
["punctuation", ">"]
]],
"baz",
["tag", [
["tag", [
["punctuation", "</"],
["namespace", "läufer:"],
"tag"
]],
["punctuation", ">"]
]]
]
----------------------------------------------------
Checks for tags, attributes and namespaces containing unicode characters.
See #585 for details.