Merge "Blacklist Firefox <= 10 per reports that it's broken"

This commit is contained in:
jenkins-bot 2013-07-01 23:59:23 +00:00 committed by Gerrit Code Review
commit 96f8b772cf
2 changed files with 4 additions and 1 deletions

View file

@ -201,7 +201,10 @@ ve.init.mw.ViewPageTarget.compatibility = {
// requests to the VisualEditor/Parsoid API which is causing silent failures
// when trying to save a page (bug 49187)
'msie': [['<=', 10]],
// Android 2.x and below "support" CE but don't trigger keyboard input
'android': [['<', 3]],
// Bug 50534 - apparently Firefox is broken in versions 10 and below
'firefox': [['<=', 10]],
// Blacklist all versions:
'opera': null,
'blackberry': null

View file

@ -38,7 +38,7 @@ QUnit.test( 'compatibility', function ( assert ) {
{
'msg': 'Firefox 10',
'userAgent': 'Mozilla/5.0 (X11; Mageia; Linux x86_64; rv:10.0.9) Gecko/20100101 Firefox/10.0.9',
'matches': []
'matches': [ 'blacklist' ]
},
{
'msg': 'Firefox 11',