| Index: scripts/slave/recipe_modules/chromium_android/resources/template/table.html
|
| diff --git a/scripts/slave/recipe_modules/chromium_android/resources/template/table.html b/scripts/slave/recipe_modules/chromium_android/resources/template/table.html
|
| index 83d7779255f645b61cdab566823d936faf37bd04..85c4cac23a0b027c4e5e81e393fc39c9ad4ea3ac 100644
|
| --- a/scripts/slave/recipe_modules/chromium_android/resources/template/table.html
|
| +++ b/scripts/slave/recipe_modules/chromium_android/resources/template/table.html
|
| @@ -1,4 +1,4 @@
|
| -<table id="{{tb_value.table_id}}">
|
| +<table id="{{tb_value.table_id}}" class="info">
|
| <thead class="heads">
|
| <tr>
|
| {% for item in tb_value.table_headers %}
|
| @@ -15,8 +15,10 @@
|
| <tr>
|
| {% for cell in row %}
|
| <td class="{{loop.index0}} {{cell.class}}">
|
| - {% if "is-pre" in cell.class %}
|
| + {% if cell.is_pre %}
|
| <pre>{{cell.data}}</pre>
|
| + {% elif cell.link %}
|
| + <a onclick="window.open('{{cell.link}}');">{{cell.data}}</a>
|
| {% else %}
|
| {{cell.data}}
|
| {% endif %}
|
|
|