OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 | 3 |
4 <head> | 4 <head> |
5 <title>Webkit Layout Test History</title> | 5 <title>Webkit Layout Test History</title> |
6 <script> | 6 <script> |
7 var pageLoadStartTime = Date.now(); | 7 var pageLoadStartTime = Date.now(); |
8 </script> | 8 </script> |
9 <style> | 9 <style> |
10 body { | 10 body { |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 | 142 |
143 // Map of builderName (the name shown in the waterfall) | 143 // Map of builderName (the name shown in the waterfall) |
144 // to builderPath (the path used in the builder's URL) | 144 // to builderPath (the path used in the builder's URL) |
145 // TODO(ojan): Make this switch based off of the testType. | 145 // TODO(ojan): Make this switch based off of the testType. |
146 var builders = { | 146 var builders = { |
147 'Webkit': 'webkit-rel', | 147 'Webkit': 'webkit-rel', |
148 'Webkit (dbg)(1)': 'webkit-dbg-1', | 148 'Webkit (dbg)(1)': 'webkit-dbg-1', |
149 'Webkit (dbg)(2)': 'webkit-dbg-2', | 149 'Webkit (dbg)(2)': 'webkit-dbg-2', |
150 'Webkit (dbg)(3)': 'webkit-dbg-3', | 150 'Webkit (dbg)(3)': 'webkit-dbg-3', |
151 'Webkit Linux': 'webkit-rel-linux', | 151 'Webkit Linux': 'webkit-rel-linux', |
152 // TODO(ojan): Comment out linux debug builders until they archive results. | 152 'Webkit Linux (dbg)(1)': 'webkit-dbg-linux-1', |
153 // 'Webkit Linux (dbg)(1)': 'webkit-dbg-linux-1', | 153 'Webkit Linux (dbg)(2)': 'webkit-dbg-linux-2', |
154 // 'Webkit Linux (dbg)(2)': 'webkit-dbg-linux-2', | 154 'Webkit Linux (dbg)(3)': 'webkit-dbg-linux-3', |
155 // 'Webkit Linux (dbg)(3)': 'webkit-dbg-linux-3', | |
156 'Webkit Mac10.5': 'webkit-rel-mac5', | 155 'Webkit Mac10.5': 'webkit-rel-mac5', |
157 'Webkit Mac10.5 (dbg)(1)': 'webkit-dbg-mac5-1', | 156 'Webkit Mac10.5 (dbg)(1)': 'webkit-dbg-mac5-1', |
158 'Webkit Mac10.5 (dbg)(2)': 'webkit-dbg-mac5-2', | 157 'Webkit Mac10.5 (dbg)(2)': 'webkit-dbg-mac5-2', |
159 'Webkit Mac10.5 (dbg)(3)': 'webkit-dbg-mac5-3' | 158 'Webkit Mac10.5 (dbg)(3)': 'webkit-dbg-mac5-3' |
160 }; | 159 }; |
161 | 160 |
162 var resultsByBuilder = {}; | 161 var resultsByBuilder = {}; |
163 var expectationsByTest = {}; | 162 var expectationsByTest = {}; |
164 function ADD_RESULTS(builds) { | 163 function ADD_RESULTS(builds) { |
165 for (var builderName in builds) { | 164 for (var builderName in builds) { |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 setInterval(function() { | 735 setInterval(function() { |
737 if (oldLocation != window.location) | 736 if (oldLocation != window.location) |
738 generatePage(); | 737 generatePage(); |
739 }, 100); | 738 }, 100); |
740 } | 739 } |
741 </script> | 740 </script> |
742 </head> | 741 </head> |
743 | 742 |
744 <body></body> | 743 <body></body> |
745 </html> | 744 </html> |
OLD | NEW |