OLD | NEW |
1 <!-- | 1 <!-- |
2 This in an HTML Import-able file that contains the definition | 2 This in an HTML Import-able file that contains the definition |
3 of the following elements: | 3 of the following elements: |
4 | 4 |
5 <fuzzer-menu-sk> | 5 <fuzzer-menu-sk> |
6 | 6 |
7 This is the side navigation menu for the Skia Fuzzer | 7 This is the side navigation menu for the Skia Fuzzer |
8 | 8 |
9 To use this file import it: | 9 To use this file import it: |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 Methods: | 23 Methods: |
24 None | 24 None |
25 --> | 25 --> |
26 <link rel="import" href="/res/common/imp/9/menu-item-sk.html"> | 26 <link rel="import" href="/res/common/imp/9/menu-item-sk.html"> |
27 <link rel="import" href="/res/imp/bower_components/iron-icons/iron-icons.html"> | 27 <link rel="import" href="/res/imp/bower_components/iron-icons/iron-icons.html"> |
28 <dom-module id="fuzzer-menu-sk"> | 28 <dom-module id="fuzzer-menu-sk"> |
29 <template> | 29 <template> |
30 <menu-item-sk label="Home" url="/" icon="icons:home"></menu-item-sk> | 30 <menu-item-sk label="Home" url="/" icon="icons:home"></menu-item-sk> |
31 <menu-item-sk label="Help" url="https://docs.google.com/document/d/1FZZnfEXz
uNcjshveX1R35Lp-96-iLJWibNYZ7_WgZjg/edit" icon="icons:help"></menu-item-sk> | 31 <menu-item-sk label="Help" url="https://docs.google.com/document/d/1FZZnfEXz
uNcjshveX1R35Lp-96-iLJWibNYZ7_WgZjg/edit" icon="icons:help"></menu-item-sk> |
32 <menu-item-sk label="Code" url="https://github.com/google/skia-buildbot/tree
/master/fuzzer" icon="icons:folder"></menu-item-sk> | 32 <menu-item-sk label="Code" url="https://github.com/google/skia-buildbot/tree
/master/fuzzer" icon="icons:folder"></menu-item-sk> |
| 33 |
| 34 <content></content> |
33 </template> | 35 </template> |
34 <script> | 36 <script> |
35 Polymer({is: "fuzzer-menu-sk"}); | 37 Polymer({is: "fuzzer-menu-sk"}); |
36 </script> | 38 </script> |
37 </dom-module> | 39 </dom-module> |
OLD | NEW |