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

Side by Side Diff: webkit/tools/layout_tests/flakiness_dashboard.html

Issue 465043: Change "OTHER" to "MISSING". All the expectations that used to be... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 <style> 6 <style>
7 body { 7 body {
8 font-family: arial; 8 font-family: arial;
9 font-size: 13px; 9 font-size: 13px;
10 } 10 }
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 'WIN-XP': 'WIN', 275 'WIN-XP': 'WIN',
276 'WIN-VISTA': 'WIN', 276 'WIN-VISTA': 'WIN',
277 'LINUX': 'ALL', 277 'LINUX': 'ALL',
278 'MAC': 'ALL' 278 'MAC': 'ALL'
279 }; 279 };
280 var BUILD_TYPES = {'DEBUG': 'DBG', 'RELEASE': 'RELEASE'}; 280 var BUILD_TYPES = {'DEBUG': 'DBG', 'RELEASE': 'RELEASE'};
281 var BASE_TABLE_HEADERS = ['bugs', 'modifiers', 'expectations', 'missing', 281 var BASE_TABLE_HEADERS = ['bugs', 'modifiers', 'expectations', 'missing',
282 'extra', 'slowest run', '% fail', 'flakiness (numbers are runtimes in seco nds)']; 282 'extra', 'slowest run', '% fail', 'flakiness (numbers are runtimes in seco nds)'];
283 var MIN_SECONDS_FOR_SLOW_TEST = 4; 283 var MIN_SECONDS_FOR_SLOW_TEST = 4;
284 var MIN_SECONDS_FOR_SLOW_TEST_DEBUG = 2 * MIN_SECONDS_FOR_SLOW_TEST; 284 var MIN_SECONDS_FOR_SLOW_TEST_DEBUG = 2 * MIN_SECONDS_FOR_SLOW_TEST;
285 var FAIL_RESULTS = ['IMAGE', 'IMAGE+TEXT', 'TEXT', 'SIMPLIFIED', 'OTHER']; 285 var FAIL_RESULTS = ['IMAGE', 'IMAGE+TEXT', 'TEXT', 'SIMPLIFIED', 'MISSING'];
286 var CHUNK_SIZE = 25; 286 var CHUNK_SIZE = 25;
287 287
288 ////////////////////////////////////////////////////////////////////////////// 288 //////////////////////////////////////////////////////////////////////////////
289 // Methods and objects from dashboard_base.js to override. 289 // Methods and objects from dashboard_base.js to override.
290 ////////////////////////////////////////////////////////////////////////////// 290 //////////////////////////////////////////////////////////////////////////////
291 function generatePage() { 291 function generatePage() {
292 if (currentState.useTestData) 292 if (currentState.useTestData)
293 return; 293 return;
294 294
295 if (!currentState.tests && !('builder' in currentState)) { 295 if (!currentState.tests && !('builder' in currentState)) {
(...skipping 1864 matching lines...) Expand 10 before | Expand all | Expand 10 after
2160 } 2160 }
2161 }, false); 2161 }, false);
2162 2162
2163 2163
2164 2164
2165 </script> 2165 </script>
2166 </head> 2166 </head>
2167 2167
2168 <body></body> 2168 <body></body>
2169 </html> 2169 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698