| Index: runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_inset.html
|
| diff --git a/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_inset.html b/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_inset.html
|
| index 7d9032d169778f298d9112df2cad205a92ad551e..e4023b4a01300365200b8227b4504ac5e27330be 100644
|
| --- a/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_inset.html
|
| +++ b/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_inset.html
|
| @@ -18,15 +18,29 @@
|
| <div class="sourceInset">
|
| <content></content>
|
| <div class="grayBox">
|
| - <table>
|
| - <tbody>
|
| - <tr template repeat="{{ line in lines }}">
|
| - <td style="font-family: consolas, courier, monospace;font-size: 1em;line-height: 1.2em;white-space: nowrap;">{{line.line}}</td>
|
| - <td> </td>
|
| - <td width="99%" style="font-family: consolas, courier, monospace;font-size: 1em;line-height: 1.2em;white-space: pre;">{{line.text}}</td>
|
| - </tr>
|
| - </tbody>
|
| - </table>
|
| + <template if="{{ coverage == true }}">
|
| + <table>
|
| + <tbody>
|
| + <tr template repeat="{{ line in lines }}">
|
| + <td style="{{ hitStyle(line) }}"><span> </span></td>
|
| + <td style="font-family: consolas, courier, monospace;font-size: 1em;line-height: 1.2em;white-space: nowrap;">{{line.line}}</td>
|
| + <td> </td>
|
| + <td width="99%" style="font-family: consolas, courier, monospace;font-size: 1em;line-height: 1.2em;white-space: pre;">{{line.text}}</td>
|
| + </tr>
|
| + </tbody>
|
| + </table>
|
| + </template>
|
| + <template if="{{ coverage == false }}">
|
| + <table>
|
| + <tbody>
|
| + <tr template repeat="{{ line in lines }}">
|
| + <td style="font-family: consolas, courier, monospace;font-size: 1em;line-height: 1.2em;white-space: nowrap;">{{line.line}}</td>
|
| + <td> </td>
|
| + <td width="99%" style="font-family: consolas, courier, monospace;font-size: 1em;line-height: 1.2em;white-space: pre;">{{line.text}}</td>
|
| + </tr>
|
| + </tbody>
|
| + </table>
|
| + </template>
|
| </div>
|
| </div>
|
| </template>
|
|
|