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

Unified Diff: LayoutTests/fast/dom/unregister-protocol-handler.html

Issue 22985005: The length of scheme is at least five characters even when the scheme has 'web+' prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/unregister-protocol-handler.html
diff --git a/LayoutTests/fast/dom/unregister-protocol-handler.html b/LayoutTests/fast/dom/unregister-protocol-handler.html
index cd64c2c442b437b15e3ee20198d67a4d83bafb2d..609726662a994ec463aa715a7490d7701aa4321a 100644
--- a/LayoutTests/fast/dom/unregister-protocol-handler.html
+++ b/LayoutTests/fast/dom/unregister-protocol-handler.html
@@ -17,7 +17,7 @@ if (window.navigator.unregisterProtocolHandler)
else
debug('Fail: window.navigator.unregisterProtocolHandler is not defined.');
-var invalid_protocols = ['http', 'https', 'file'];
+var invalid_protocols = ['http', 'https', 'file', 'web+'];
invalid_protocols.forEach(function (protocol) {
var succeeded = false;
try {

Powered by Google App Engine
This is Rietveld 408576698