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

Side by Side Diff: lib/src/prism/tests/languages/gherkin/table_feature.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 Examples: foo
2 | start | eat | left |
3 | <foo> | 5 | 7 |
4 | 20 | 5 | 15 |
5
6 ----------------------------------------------------
7
8 [
9 ["scenario", [["keyword", "Examples:"], ["important", " foo"]]],
10 ["table-head", [
11 ["punctuation", "|"],
12 ["th", " start "],
13 ["punctuation", "|"],
14 ["th", " eat "],
15 ["punctuation", "|"],
16 ["th", " left "],
17 ["punctuation", "|"]
18 ]],
19 ["table-body", [
20 ["punctuation", "|"],
21 ["outline", "<foo>"],
22 ["punctuation", "|"],
23 ["td", " 5 "],
24 ["punctuation", "|"],
25 ["td", " 7 "],
26 ["punctuation", "|"],
27
28 ["punctuation", "|"],
29 ["td", " 20 "],
30 ["punctuation", "|"],
31 ["td", " 5 "],
32 ["punctuation", "|"],
33 ["td", " 15 "],
34 ["punctuation", "|"]
35 ]]
36 ]
37
38 ----------------------------------------------------
39
40 Checks for table heads and table bodies.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/gherkin/string_feature.test ('k') | lib/src/prism/tests/languages/gherkin/tag_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698