Index: Tools/GardeningServer/model/ct-failure.html |
diff --git a/Tools/GardeningServer/model/ct-failure.html b/Tools/GardeningServer/model/ct-failure.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..de769d21f36b86d5b35b112d5f1a83d5dfb3db21 |
--- /dev/null |
+++ b/Tools/GardeningServer/model/ct-failure.html |
@@ -0,0 +1,17 @@ |
+<!-- |
+Copyright 2014 The Chromium Authors. All rights reserved. |
+Use of this source code is governed by a BSD-style license that can be |
+found in the LICENSE file. |
+--> |
+ |
+<script> |
+function CTFailure(step, reason, resultsByBuilder, oldestFailingRevision, newestPassingRevision) { |
+ this.step = step; |
+ // FIXME: Rename this to reason. |
+ this.testName = reason; |
+ this.resultNodesByBuilder = resultsByBuilder; |
+ // FIXME: Move these up one layer to the groupedFailures object. |
+ this.oldestFailingRevision = oldestFailingRevision; |
+ this.newestPassingRevision = newestPassingRevision; |
+} |
+</script> |