Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(223)

Side by Side Diff: LayoutTests/fast/dom/register-protocol-handler.html

Issue 14531004: Add bitcoin: URI scheme to whitelist for registerProtocolHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/register-protocol-handler-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <body> 2 <body>
3 <p>This test makes sure that navigator.registerProtocolHandler throws the proper exceptions and has no-op default implementation.</p> 3 <p>This test makes sure that navigator.registerProtocolHandler throws the proper exceptions and has no-op default implementation.</p>
4 <pre id="console"></pre> 4 <pre id="console"></pre>
5 <script> 5 <script>
6 if (window.testRunner) 6 if (window.testRunner)
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 8
9 function debug(str) 9 function debug(str)
10 { 10 {
(...skipping 14 matching lines...) Expand all
25 } catch (e) { 25 } catch (e) {
26 succeeded = 'SecurityError' == e.name; 26 succeeded = 'SecurityError' == e.name;
27 } 27 }
28 28
29 if (succeeded) 29 if (succeeded)
30 debug('Pass: Invalid protocol "' + protocol + '" threw SecurityError exc eption.'); 30 debug('Pass: Invalid protocol "' + protocol + '" threw SecurityError exc eption.');
31 else 31 else
32 debug('Fail: Invalid protocol "' + protocol + '" allowed.'); 32 debug('Fail: Invalid protocol "' + protocol + '" allowed.');
33 }); 33 });
34 34
35 var valid_protocols = ['irc', 'mailto', 'mms', 'news', 'nntp', 'sms', 'smsto', ' tel', 'urn', 'webcal']; 35 var valid_protocols = ['bitcoin', 'irc', 'mailto', 'mms', 'news', 'nntp', 'sms', 'smsto', 'tel', 'urn', 'webcal'];
36 valid_protocols.forEach(function (protocol) { 36 valid_protocols.forEach(function (protocol) {
37 var succeeded = false; 37 var succeeded = false;
38 try { 38 try {
39 window.navigator.registerProtocolHandler(protocol, "valid protocol %s", "title"); 39 window.navigator.registerProtocolHandler(protocol, "valid protocol %s", "title");
40 succeeded = true; 40 succeeded = true;
41 } catch (e) { 41 } catch (e) {
42 succeeded = false; 42 succeeded = false;
43 } 43 }
44 44
45 if (succeeded) 45 if (succeeded)
(...skipping 25 matching lines...) Expand all
71 succeeded = false; 71 succeeded = false;
72 } 72 }
73 73
74 if (succeeded) 74 if (succeeded)
75 debug('Pass: Valid call succeeded.'); 75 debug('Pass: Valid call succeeded.');
76 else 76 else
77 debug('Fail: Invalid call did not succeed.'); 77 debug('Fail: Invalid call did not succeed.');
78 </script> 78 </script>
79 </body> 79 </body>
80 </html> 80 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/register-protocol-handler-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698