Fixes #7653. Changes regexp to detect local protocol so that it will accept any protocol finishing by -extension.

This commit is contained in:
jaubourg 2011-02-03 05:19:15 +01:00
parent 823eecab90
commit 50e950a96e

View file

@ -6,8 +6,8 @@ var r20 = /%20/g,
rhash = /#.*$/,
rheaders = /^(.*?):\s*(.*?)\r?$/mg, // IE leaves an \r character at EOL
rinput = /^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,
// #8125, #8152: local protocol detection
rlocalProtocol = /^(file|chrome\-extension):$/,
// #7653, #8125, #8152: local protocol detection
rlocalProtocol = /(?:^file|\-extension):$/,
rnoContent = /^(?:GET|HEAD)$/,
rprotocol = /^\/\//,
rquery = /\?/,