michael@0: /** michael@0: * This file lists the tests in the BrowserScope suite which we are currently michael@0: * failing. We mark them as todo items to keep track of them. michael@0: */ michael@0: michael@0: var knownFailures = { michael@0: // Dummy result items. There is one for each category. michael@0: 'apply' : { michael@0: '0-undefined' : true michael@0: }, michael@0: 'unapply' : { michael@0: '0-undefined' : true michael@0: }, michael@0: 'change' : { michael@0: '0-undefined' : true michael@0: }, michael@0: 'query' : { michael@0: '0-undefined' : true michael@0: }, michael@0: 'a' : { michael@0: 'createbookmark-0' : true, michael@0: 'fontsize-1' : true, michael@0: 'subscript-1' : true, michael@0: 'superscript-1' : true, michael@0: }, michael@0: 'u': { michael@0: 'removeformat-1' : true, michael@0: 'removeformat-2' : true, michael@0: 'strikethrough-2' : true, michael@0: 'subscript-1' : true, michael@0: 'superscript-1' : true, michael@0: 'unbookmark-0' : true, michael@0: }, michael@0: 'q': { michael@0: 'fontsize-1' : true, michael@0: 'fontsize-2' : true, michael@0: }, michael@0: 'c': { michael@0: 'fontsize-1' : true, michael@0: 'fontsize-2' : true, michael@0: }, michael@0: }; michael@0: michael@0: function isKnownFailure(type, test, param) { michael@0: return (type in knownFailures) && ((test + "-" + param) in knownFailures[type]); michael@0: }