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

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

Issue 459983002: Kill ui.js (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated to ToT Created 6 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: Tools/GardeningServer/ui/ct-test-list-tests.html
diff --git a/Tools/GardeningServer/ui/ct-test-list-tests.html b/Tools/GardeningServer/ui/ct-test-list-tests.html
index 95ae6e5f1a83c3c5b14a937577645b28a97491bb..5a947a6219f70150dc7d7ae9b3b3ab65461ec584 100644
--- a/Tools/GardeningServer/ui/ct-test-list-tests.html
+++ b/Tools/GardeningServer/ui/ct-test-list-tests.html
@@ -9,40 +9,27 @@ found in the LICENSE file.
<script>
(function () {
-var kExampleTests = [
-{
- "testName": "plugins/gesture-events-scrolled.html",
- "step": "foo_step",
- "resultNodesByBuilder": {
- "WebKit Mac10.6 (dbg)": {
- "actual": "IMAGE",
- },
- },
- "oldestFailingRevision": 177164,
- "newestPassingRevision": 177165,
-},
-{
- "testName": "plugins/transformed-events.html",
- "step": "foo_step",
- "resultNodesByBuilder": {
- "WebKit Mac10.6 (dbg)": {
- "actual": "IMAGE",
- },
- },
- "oldestFailingRevision": 177164,
- "newestPassingRevision": 177165,
-},
-{
- "testName": "plugins/gesture-events.html",
- "step": "foo_step",
- "resultNodesByBuilder": {
- "WebKit Mac10.6 (dbg)": {
- "actual": "IMAGE",
- },
- },
- "oldestFailingRevision": 177164,
- "newestPassingRevision": 177165,
-},
+var kExampleFailures = [
+ new CTFailure('foo_step', "plugins/gesture-events-scrolled.html",
+ {
+ "WebKit Mac10.6 (dbg)": {
+ "actual": "IMAGE",
+ },
+ }, 177164, 177165),
+ new CTFailure('foo_step', "plugins/transformed-events.html",
+ {
+ "WebKit Mac10.6 (dbg)": {
+ "actual": "IMAGE",
+ },
+ }, 177164, 177165
+ ),
+ new CTFailure('foo_step', "plugins/gesture-events.html",
+ {
+ "WebKit Mac10.6 (dbg)": {
+ "actual": "IMAGE",
+ },
+ }, 177164, 177165
+ )
];
module("ct-test-list");
@@ -50,7 +37,7 @@ module("ct-test-list");
asyncTest("basic", 4, function() {
var list = document.createElement('ct-test-list');
- list.tests = kExampleTests;
+ list.tests = kExampleFailures;
list.tree = 'blink';
Platform.endOfMicrotask(function() {
« no previous file with comments | « Tools/GardeningServer/ui/ct-test-list.html ('k') | Tools/GardeningServer/ui/test/ct-builder-grid-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698