| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 The common.js file must be included before this file. | 2 The common.js file must be included before this file. |
| 3 | 3 |
| 4 This in an HTML Import-able file that contains the definition | 4 This in an HTML Import-able file that contains the definition |
| 5 of the following elements: | 5 of the following elements: |
| 6 | 6 |
| 7 <fuzzer-stacktrace-sk> | 7 <fuzzer-stacktrace-sk> |
| 8 | 8 |
| 9 <fuzzer-stacktrace-sk> displays a strack trace showing the first 8 frames and
can be expanded with a click. | 9 <fuzzer-stacktrace-sk> displays a strack trace showing the first 8 frames and
can be expanded with a click. |
| 10 | 10 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 return trace.frames; | 121 return trace.frames; |
| 122 } | 122 } |
| 123 return trace.frames.slice(0, 8); | 123 return trace.frames.slice(0, 8); |
| 124 }, | 124 }, |
| 125 | 125 |
| 126 showMore: function() { | 126 showMore: function() { |
| 127 this.expanded = true; | 127 this.expanded = true; |
| 128 this.$.expand.toggleClass("hidden"); | 128 this.$.expand.toggleClass("hidden"); |
| 129 } | 129 } |
| 130 }); | 130 }); |
| 131 </script | 131 </script> |
| 132 </dom-module id="fuzzer-stacktrace-sk"> | 132 </dom-module> |
| OLD | NEW |