Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(648)

Side by Side Diff: lib/src/prism/tests/languages/markup/issue585.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/markup/entity_feature.test ('k') | lib/src/prism/tests/languages/markup/prolog_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698