Merge "Remove mobile browsers from the blacklist"

This commit is contained in:
jenkins-bot 2017-05-22 13:23:39 +00:00 committed by Gerrit Code Review
commit efd8ab25ca
2 changed files with 5 additions and 13 deletions

View file

@ -56,12 +56,6 @@
"VisualEditorShowBetaWelcome": true,
"VisualEditorParsoidHTTPProxy": false,
"VisualEditorBrowserBlacklist": {
"android": [
[
"<",
3
]
],
"firefox": [
[
"<=",
@ -85,9 +79,7 @@
"<",
10
]
],
"blackberry": null,
"silk": null
]
},
"VisualEditorTabPosition": "before",
"VisualEditorParsoidURL": "http://localhost:8000",

View file

@ -128,7 +128,7 @@ QUnit.test( 'compatibility', function ( assert ) {
{
msg: 'Android 2.3',
userAgent: 'Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; HTC Vision Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1',
matches: [ 'blacklist' ]
matches: []
},
{
msg: 'Android 3.0',
@ -153,17 +153,17 @@ QUnit.test( 'compatibility', function ( assert ) {
{
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+',
matches: [ 'blacklist' ]
matches: []
},
{
msg: 'Amazon Silk desktop',
userAgent: 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us; Silk/1.0.13.81_10003810) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 Silk-Accelerated=true',
matches: [ 'blacklist' ]
matches: []
},
{
msg: 'Amazon Silk mobile',
userAgent: 'Mozilla/5.0 (Linux; U; Android 4.0.3; en-us; KFTT Build/IML74K) AppleWebKit/535.19 (KHTML, like Gecko) Silk/2.1 Mobile Safari/535.19 Silk-Accelerated=true',
matches: [ 'blacklist' ]
matches: []
}
];