Initial commit of make.uri
This commit is contained in:
parent
f884643863
commit
ac88f930c5
1 changed files with 50 additions and 0 deletions
50
lib/make/uri.js
Normal file
50
lib/make/uri.js
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
make.uri = {
|
||||||
|
problematic: function () {
|
||||||
|
return random.item([
|
||||||
|
'aim:yaz', // Often triggers an 'external protocol request' dialog
|
||||||
|
'foop:yaz', // Often triggers an unknown protocol
|
||||||
|
'about:memory', // Content is not allowed to link or load
|
||||||
|
'ws://localhost/' // WebSocket protocol
|
||||||
|
])
|
||||||
|
},
|
||||||
|
|
||||||
|
standard: function () {
|
||||||
|
return random.item([
|
||||||
|
'about:blank',
|
||||||
|
'about:srcdoc',
|
||||||
|
'about:mozilla',
|
||||||
|
'about:rights',
|
||||||
|
'data:text/html,',
|
||||||
|
'data:image/png,',
|
||||||
|
'data:',
|
||||||
|
'javascript:5555',
|
||||||
|
'javascript:"QQQQ' + String.fromCharCode(0) + 'UUUU"',
|
||||||
|
'http://a.invalid/',
|
||||||
|
'http://localhost:6/',
|
||||||
|
'https://localhost:6/',
|
||||||
|
'ftp://localhost:6/',
|
||||||
|
'http://localhost:25/'
|
||||||
|
])
|
||||||
|
},
|
||||||
|
|
||||||
|
namespace: function () {
|
||||||
|
return random.item([
|
||||||
|
'http://www.w3.org/1999/xhtml',
|
||||||
|
'http://www.w3.org/2000/svg',
|
||||||
|
'http://www.w3.org/1998/Math/MathML'
|
||||||
|
])
|
||||||
|
},
|
||||||
|
|
||||||
|
any: function () {
|
||||||
|
return random.choose([
|
||||||
|
[1, this.problematic],
|
||||||
|
[10, this.standard],
|
||||||
|
[10, this.namespace],
|
||||||
|
[10, make.files.any]
|
||||||
|
])
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue