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

Unified Diff: Tools/GardeningServer/ui/ct-test-list.html

Issue 416673003: Show non-webkit test failures in the failure stream (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add files accidentally left out Created 6 years, 5 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: Tools/GardeningServer/ui/ct-test-list.html
diff --git a/Tools/GardeningServer/ui/ct-test-list.html b/Tools/GardeningServer/ui/ct-test-list.html
index 73f970a3e36925af648e2b63637296055c275738..1f87d99d1063d18b19b7da24d296c651471e9345 100644
--- a/Tools/GardeningServer/ui/ct-test-list.html
+++ b/Tools/GardeningServer/ui/ct-test-list.html
@@ -11,14 +11,15 @@ found in the LICENSE file.
display: block;
}
</style>
- <template repeat="{{testName in tests}}">
- <div><a href="{{testName|flakinessDashboardURL}}">{{testName}}</a></div>
+ <template repeat="{{ test in tests }}">
+ <!-- FIXME: Find a less redundant UI than repeating the step on each line. -->
+ <div>{{ test.step }} <a href="{{ test | flakinessDashboardURL }}">{{ test.testName }}</a></div>
</template>
</template>
<script>
Polymer({
- flakinessDashboardURL: function(testName) {
- return ui.urlForFlakinessDashboard([testName]);
+ flakinessDashboardURL: function(test) {
+ return ui.urlForFlakinessDashboard(test.testName, test.step);
szager1 2014/07/25 23:53:17 The 'Examine' button seems to be busted for webkit
},
});
</script>

Powered by Google App Engine
This is Rietveld 408576698