1/*
2 * Copyright (c) 2010 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 *     * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 *     * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 *     * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31var results;
32var testsByFailureType = {};
33var testsByDirectory = {};
34var selectedTests = [];
35
36function $(id)
37{
38    return document.getElementById(id);
39}
40
41function getSelectValue(id)
42{
43    var select = $(id);
44    if (select.selectedIndex == -1) {
45        return null;
46    } else {
47        return select.options[select.selectedIndex].value;
48    }
49}
50
51function loadText(url, callback)
52{
53    var xhr = new XMLHttpRequest();
54    xhr.open('GET', url);
55    xhr.addEventListener('load', function() { callback(xhr.responseText); });
56    xhr.send();
57}
58
59function log(text, type)
60{
61    var node = $('log');
62
63    if (type) {
64        var typeNode = document.createElement('span');
65        typeNode.textContent = type.text;
66        typeNode.style.color = type.color;
67        node.appendChild(typeNode);
68    }
69
70    node.appendChild(document.createTextNode(text + '\n'));
71    node.scrollTop = node.scrollHeight;
72}
73
74log.WARNING = {text: 'Warning: ', color: '#aa3'};
75log.SUCCESS = {text: 'Success: ', color: 'green'};
76log.ERROR = {text: 'Error: ', color: 'red'};
77
78function toggle(id)
79{
80    var element = $(id);
81    var toggler = $('toggle-' + id);
82    if (element.style.display == 'none') {
83        element.style.display = '';
84        toggler.className = 'link selected';
85    } else {
86        element.style.display = 'none';
87        toggler.className = 'link';
88    }
89}
90
91function getTracUrl(layoutTestPath)
92{
93  return 'http://trac.webkit.org/browser/trunk/LayoutTests/' + layoutTestPath;
94}
95
96function getSortedKeys(obj)
97{
98    var keys = [];
99    for (var key in obj) {
100        keys.push(key);
101    }
102    keys.sort();
103    return keys;
104}