mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
Unblacklist Opera >= 12
Opera 12 seems to work well enough, but I'm not confident enough to whitelist it just yet. Opera 15 is basically Chrome with a different interface, so it should work perfectly, but it's barely out of beta and untested right now. Bug: 36000 Change-Id: Ia80a6f53f8c128ef52d0bfde1828fdc132046afb
This commit is contained in:
parent
7021e0ab46
commit
54c5230b01
|
@ -97,8 +97,9 @@
|
|||
// Firefox issues in versions 12 and below (bug 50780)
|
||||
// Wikilink [[./]] bug in Firefox 14 and below (bug 50720)
|
||||
'firefox': [['<=', 14]],
|
||||
// Opera < 12 was not tested and it's userbase is almost nonexistent anyway
|
||||
'opera': [['<', 12]],
|
||||
// Blacklist all versions:
|
||||
'opera': null,
|
||||
'blackberry': null
|
||||
},
|
||||
|
||||
|
|
|
@ -132,10 +132,15 @@ QUnit.test( 'compatibility', function ( assert ) {
|
|||
'matches': []
|
||||
},
|
||||
{
|
||||
'msg': 'Opera',
|
||||
'userAgent': 'Opera/12.80 (Windows NT 5.1; U; en) Presto/2.10.289 Version/12.02',
|
||||
'msg': 'Opera 11',
|
||||
'userAgent': 'Opera/9.80 (Windows NT 5.1) Presto/2.10.229 Version/11.64',
|
||||
'matches': [ 'blacklist' ]
|
||||
},
|
||||
{
|
||||
'msg': 'Opera 12',
|
||||
'userAgent': 'Opera/9.80 (Windows NT 5.1) Presto/2.12.388 Version/12.16',
|
||||
'matches': []
|
||||
},
|
||||
{
|
||||
'msg': 'BlackBerry',
|
||||
'userAgent': 'Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.1.0.346 Mobile Safari/534.11+',
|
||||
|
|
Loading…
Reference in a new issue