Blame view

bower_components/prism/tests/languages/markup/issue585.test 1.13 KB
eb240478   Luigi Serra   public room cards...
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
  <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.