| OLD | NEW |
| 1 <!-- The <test-summary-details-sk> custom element declaration. | 1 <!-- The <test-summary-details-sk> custom element declaration. |
| 2 | 2 |
| 3 Displays the details about all the untriaged digests in one test summary. | 3 Displays the details about all the untriaged digests in one test summary. |
| 4 | 4 |
| 5 Attributes: | 5 Attributes: |
| 6 test - The name of the test. | 6 test - The name of the test. |
| 7 digest - The digest we are interested in. | 7 digest - The digest we are interested in. |
| 8 limit - The maximum number of digests to display. | 8 limit - The maximum number of digests to display. |
| 9 triage - A boolean, if true, then display the triage controls. | 9 triage - A boolean, if true, then display the triage controls. |
| 10 data-diff - A read-only attribute that is the size of the difference between | 10 data-diff - A read-only attribute that is the size of the difference between |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 font-weight: bold; | 114 font-weight: bold; |
| 115 width: 5em; | 115 width: 5em; |
| 116 padding: 1em; | 116 padding: 1em; |
| 117 color: #E7298A; | 117 color: #E7298A; |
| 118 } | 118 } |
| 119 #paramset th { | 119 #paramset th { |
| 120 text-align: right; | 120 text-align: right; |
| 121 padding-right: 0.5em; | 121 padding-right: 0.5em; |
| 122 } | 122 } |
| 123 | 123 |
| 124 #paramset span { |
| 125 margin-right: 0.2em; |
| 126 } |
| 127 |
| 124 #paramset .hover { | 128 #paramset .hover { |
| 125 color: #44aa99; | 129 color: #E7298A; |
| 126 font-weight: bold; | 130 font-weight: bold; |
| 127 } | 131 } |
| 128 </style> | 132 </style> |
| 129 <div horizontal layout> | 133 <div horizontal layout> |
| 130 <template if="{{triage && negIsClosest}}"> | 134 <template if="{{triage && negIsClosest}}"> |
| 131 <div vertical layout id=warning> | 135 <div vertical layout id=warning> |
| 132 Closest Image Is Negative! | 136 Closest Image Is Negative! |
| 133 </div> | 137 </div> |
| 134 </template> | 138 </template> |
| 135 <template if="{{triage && details.closest.digest}}"> | 139 <template if="{{triage && details.closest.digest}}"> |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 fixedPercent: function(i) { | 355 fixedPercent: function(i) { |
| 352 if (i) { | 356 if (i) { |
| 353 return i.toFixed(2); | 357 return i.toFixed(2); |
| 354 } else { | 358 } else { |
| 355 return ''; | 359 return ''; |
| 356 } | 360 } |
| 357 }, | 361 }, |
| 358 }); | 362 }); |
| 359 </script> | 363 </script> |
| 360 </polymer-element> | 364 </polymer-element> |
| OLD | NEW |