Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(641)

Unified Diff: scripts/slave/recipe_modules/chromium_android/resources/template/table.html

Issue 2224173002: Added different colors for success/failure and code search. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fixed relative directory Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 %}

Powered by Google App Engine
This is Rietveld 408576698