tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

currentStatus.js (942B)


      1 /**
      2 * This file lists the tests in the BrowserScope suite which we are currently
      3 * failing.  We mark them as todo items to keep track of them.
      4 */
      5 
      6 var knownFailures = {
      7  // Dummy result items.  There is one for each category.
      8  'apply' : {
      9    '0-undefined' : true
     10  },
     11  'unapply' : {
     12    '0-undefined' : true
     13  },
     14  'change' : {
     15    '0-undefined' : true
     16  },
     17  'query' : {
     18    '0-undefined' : true
     19  },
     20  'a' : {
     21    'createbookmark-0' : true,
     22    'decreasefontsize-0' : true,
     23    'fontsize-1' : true,
     24    'subscript-1' : true,
     25    'superscript-1' : true,
     26  },
     27  'u': {
     28    'removeformat-1' : true,
     29    'removeformat-2' : true,
     30    'strikethrough-2' : true,
     31    'subscript-1' : true,
     32    'superscript-1' : true,
     33    'unbookmark-0' : true,
     34  },
     35  'q': {
     36    'fontsize-1' : true,
     37    'fontsize-2' : true,
     38  },
     39 };
     40 
     41 function isKnownFailure(type, test, param) {
     42  return (type in knownFailures) && knownFailures[type][test + "-" + param];
     43 }