Closed
Bug 1504487
Opened 6 years ago
Closed 5 years ago
Green up wpt html/webappapis/system-state-and-capabilities directory on fennec
Categories
(Testing :: web-platform-tests, defect, P3)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: KWierso, Unassigned)
References
Details
Lots of failures here:
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | an empty url argument should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', '', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | %s instead of domain name should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', 'http://%s.com', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | %s instead of subdomain name should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', 'http://%s.example.com', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a url argument without %s should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', location.href + '', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a url argument without %s (but with %) should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', location.href + '/%', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a url argument without %s (but with %a) should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a url argument pointing to a different domain name should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', 'http://example.com/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a url argument pointing to a different domain name should throw SECURITY_ERR (2) - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', 'https://example.com/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a url argument pointing to a different domain name should throw SECURITY_ERR (3) - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', 'http://foobar.example.com/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | looping handlers should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto', 'mailto:%s@example.com', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a url argument pointing to a non-http[s] scheme should throw SECURITY_ERR due to not being of the same origin - assert_throws: function "function () { navigator.registerProtocolHandler('sms', 'tel:%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a protocol argument containing an unrecognized scheme should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('unrecognized', location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a protocol argument containing : should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto:', location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a protocol argument containing :// should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto://', location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a protocol argument containing http:// should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('http://', location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a protocol argument containing a null character should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto' + String.fromCharCode(0), location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a protocol argument containing a backspace character should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailtoo' + String.fromCharCode(8), location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a protocol argument containing a LF character should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mailto' + String.fromCharCode(10), location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | a protocol argument containing non-alphanumeric characters (like a cyrillic “а”) should throw SYNTAX_ERR - assert_throws: function "function () { navigator.registerProtocolHandler('mаilto', location.href + '/%a', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the about protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the attachment protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the blob protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the chrome protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the cid protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the data protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the file protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the ftp protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the http protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the https protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the javascript protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the livescript protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the mid protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the mocha protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the opera protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the operamail protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the res protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the resource protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the shttp protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the tcl protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the vbscript protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the view-source protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the ws protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the wss protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
TEST-UNEXPECTED-FAIL | /html/webappapis/system-state-and-capabilities/the-navigator-object/protocol.https.html | attempting to override the wyciwyg protocol should throw SECURITY_ERR - assert_throws: function "function () { navigator.registerProtocolHandler(blacklist[bi], location.href + '/%s', 'foo') }" did not throw
Reporter | ||
Updated•6 years ago
|
Summary: Green up wpt html/webappapis directory on fennec → Green up wpt html/webappapis/system-state-and-capabilities directory on fennec
Updated•6 years ago
|
Priority: -- → P3
Reporter | ||
Comment 1•5 years ago
|
||
Mass-closing fennec wpt bugs as we're not going to be running wpt against fennec in the near future.
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•