mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 14:33:59 +00:00
Un-blacklist Firefox versions 12,13,14
T52720 (link corruption in FF13/14) appears to be fixed. T52780 (editor not loading in FF11/12) appears to be fixed. FF11 has a new issue where templates are normalised even when not touched (T136607) Change-Id: I34358e3d90b8186e6b89c04c038ab79c908fc81b
This commit is contained in:
parent
d5ad1d3ff8
commit
20fa650a6b
|
@ -73,7 +73,7 @@
|
|||
"firefox": [
|
||||
[
|
||||
"<=",
|
||||
14
|
||||
11
|
||||
]
|
||||
],
|
||||
"safari": [
|
||||
|
|
|
@ -141,7 +141,7 @@ ve.init.mw.DesktopArticleTarget.static.compatibility = {
|
|||
// The value is either null (match all versions) or a list of tuples
|
||||
// containing an inequality (<,>,<=,>=) and a version number
|
||||
whitelist: {
|
||||
firefox: [ [ '>=', 15 ] ],
|
||||
firefox: [ [ '>=', 12 ] ],
|
||||
iceweasel: [ [ '>=', 10 ] ],
|
||||
safari: [ [ '>=', 7 ] ],
|
||||
chrome: [ [ '>=', 19 ] ],
|
||||
|
|
|
@ -59,17 +59,17 @@ QUnit.test( 'compatibility', function ( assert ) {
|
|||
{
|
||||
msg: 'Firefox 12',
|
||||
userAgent: 'Mozilla/5.0 (compatible; Windows; U; Windows NT 6.2; WOW64; en-US; rv:12.0) Gecko/20120403211507 Firefox/12.0',
|
||||
matches: [ 'blacklist' ]
|
||||
matches: [ 'whitelist' ]
|
||||
},
|
||||
{
|
||||
msg: 'Firefox 13',
|
||||
userAgent: 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101 Firefox/13.0',
|
||||
matches: [ 'blacklist' ]
|
||||
matches: [ 'whitelist' ]
|
||||
},
|
||||
{
|
||||
msg: 'Firefox 14',
|
||||
userAgent: 'Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/20120403211507 Firefox/14.0.1',
|
||||
matches: [ 'blacklist' ]
|
||||
matches: [ 'whitelist' ]
|
||||
},
|
||||
{
|
||||
msg: 'Firefox 15',
|
||||
|
|
Loading…
Reference in a new issue