зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1250366 - fix whitespace issues with URL highlight code, r=jaws
MozReview-Commit-ID: 1i0IiZ7EDWi --HG-- extra : rebase_source : 20b36e17d188fb3b85b22c3add674bf1dc739499
This commit is contained in:
Родитель
6d647d768f
Коммит
f8aac34eb3
|
@ -60,6 +60,9 @@ function test() {
|
|||
testVal("<user:pass@sub1.sub2.sub3.>mozilla.org");
|
||||
testVal("<user:pass@>mozilla.org");
|
||||
|
||||
testVal("<https://>mozilla.org< >");
|
||||
testVal("mozilla.org< >");
|
||||
|
||||
testVal("<https://>mozilla.org</file.ext>");
|
||||
testVal("<https://>mozilla.org</sub/file.ext>");
|
||||
testVal("<https://>mozilla.org</sub/file.ext?foo>");
|
||||
|
|
|
@ -261,7 +261,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|||
trimmedLength = "http://".length;
|
||||
}
|
||||
|
||||
let matchedURL = value.match(/^((?:[a-z]+:\/\/)(?:[^\/#?]+@)?)(.+?)(?::\d+)?(?:[\/#?]|$)/);
|
||||
let matchedURL = value.match(/^((?:[a-z]+:\/\/)(?:[^\/#?]+@)?)(\S+?)(?::\d+)?\s*(?:[\/#?]|$)/);
|
||||
if (!matchedURL)
|
||||
return;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче