| OLD | NEW |
| 1 This test makes sure that navigator.registerProtocolHandler throws the proper ex
ceptions and has no-op default implementation. | 1 This test makes sure that navigator.registerProtocolHandler throws the proper ex
ceptions and has no-op default implementation. |
| 2 | 2 |
| 3 PASS window.navigator.registerProtocolHandler is defined. | 3 PASS window.navigator.registerProtocolHandler is defined. |
| 4 PASS Invalid protocol "http" threw SecurityError exception: "Failed to execute '
registerProtocolHandler' on 'Navigator': The scheme 'http' doesn't belong to the
protocol whitelist. Please prefix non-whitelisted schemes with the string 'web+
'.". | 4 PASS Invalid protocol "http" threw SecurityError exception: "Failed to execute '
registerProtocolHandler' on 'Navigator': The scheme 'http' doesn't belong to the
protocol whitelist. Please prefix non-whitelisted schemes with the string 'web+
'.". |
| 5 PASS Invalid protocol "https" threw SecurityError exception: "Failed to execute
'registerProtocolHandler' on 'Navigator': The scheme 'https' doesn't belong to t
he protocol whitelist. Please prefix non-whitelisted schemes with the string 'we
b+'.". | 5 PASS Invalid protocol "https" threw SecurityError exception: "Failed to execute
'registerProtocolHandler' on 'Navigator': The scheme 'https' doesn't belong to t
he protocol whitelist. Please prefix non-whitelisted schemes with the string 'we
b+'.". |
| 6 PASS Invalid protocol "file" threw SecurityError exception: "Failed to execute '
registerProtocolHandler' on 'Navigator': The scheme 'file' doesn't belong to the
protocol whitelist. Please prefix non-whitelisted schemes with the string 'web+
'.". | 6 PASS Invalid protocol "file" threw SecurityError exception: "Failed to execute '
registerProtocolHandler' on 'Navigator': The scheme 'file' doesn't belong to the
protocol whitelist. Please prefix non-whitelisted schemes with the string 'web+
'.". |
| 7 PASS Invalid protocol "web+" threw SecurityError exception: "Failed to execute '
registerProtocolHandler' on 'Navigator': The scheme 'web+' is less than five cha
racters long.". | 7 PASS Invalid protocol "web+" threw SecurityError exception: "Failed to execute '
registerProtocolHandler' on 'Navigator': The scheme 'web+' is less than five cha
racters long.". |
| 8 PASS Valid protocol "bitcoin" allowed. | 8 PASS Valid protocol "bitcoin" allowed. |
| 9 PASS Valid protocol "BitcoIn" allowed. | 9 PASS Valid protocol "BitcoIn" allowed. |
| 10 PASS Valid protocol "geo" allowed. | 10 PASS Valid protocol "geo" allowed. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 PASS Valid protocol "wtai" allowed. | 30 PASS Valid protocol "wtai" allowed. |
| 31 PASS Valid protocol "WTAI" allowed. | 31 PASS Valid protocol "WTAI" allowed. |
| 32 PASS Valid protocol "xmpp" allowed. | 32 PASS Valid protocol "xmpp" allowed. |
| 33 PASS Invalid scheme "mailto:" falied. | 33 PASS Invalid scheme "mailto:" falied. |
| 34 PASS Invalid scheme "ssh:/" falied. | 34 PASS Invalid scheme "ssh:/" falied. |
| 35 PASS Invalid scheme "magnet:+" falied. | 35 PASS Invalid scheme "magnet:+" falied. |
| 36 PASS Invalid scheme "tel:sip" falied. | 36 PASS Invalid scheme "tel:sip" falied. |
| 37 PASS Invalid url "" threw SyntaxError exception: "Failed to execute 'registerPro
tocolHandler' on 'Navigator': The url provided ('') does not contain '%s'.". | 37 PASS Invalid url "" threw SyntaxError exception: "Failed to execute 'registerPro
tocolHandler' on 'Navigator': The url provided ('') does not contain '%s'.". |
| 38 PASS Invalid url "%S" threw SyntaxError exception: "Failed to execute 'registerP
rotocolHandler' on 'Navigator': The url provided ('%S') does not contain '%s'.". | 38 PASS Invalid url "%S" threw SyntaxError exception: "Failed to execute 'registerP
rotocolHandler' on 'Navigator': The url provided ('%S') does not contain '%s'.". |
| 39 PASS Valid call succeeded. | 39 PASS Valid call succeeded. |
| 40 PASS Invalid url threw SecurityError exception: "Failed to execute 'registerProt
ocolHandler' on 'Navigator': Can only register handler in the document's origin.
". |
| 40 | 41 |
| 41 Check if registerProtocolHandler can register protocol correctly. If isProtocolH
andlerRegistered() returns 'registered' state, registerProtoclHandler() works we
ll. | 42 Check if registerProtocolHandler can register protocol correctly. If isProtocolH
andlerRegistered() returns 'registered' state, registerProtoclHandler() works we
ll. |
| 42 'bitcoin' protocol will be registered for testing. | 43 'bitcoin' protocol will be registered for testing. |
| 43 | 44 |
| 44 PASS window.navigator.isProtocolHandlerRegistered returns 'registered' state. 'b
itcoin' is registered successfully. | 45 PASS window.navigator.isProtocolHandlerRegistered returns 'registered' state. 'b
itcoin' is registered successfully. |
| 45 | 46 |
| 46 | 47 |
| 47 PASS successfullyParsed is true | 48 PASS successfullyParsed is true |
| 48 | 49 |
| 49 TEST COMPLETE | 50 TEST COMPLETE |
| 50 | 51 |
| OLD | NEW |