emit did-fail-load event when the url char length exceeds limit

This commit is contained in:
deepak1556 2017-01-21 14:59:20 +05:30
parent 54559f99a0
commit f9dc08baf6

View file

@ -861,7 +861,7 @@ bool WebContents::Equal(const WebContents* web_contents) const {
}
void WebContents::LoadURL(const GURL& url, const mate::Dictionary& options) {
if (!url.is_valid()) {
if (!url.is_valid() || url.spec().size() > url::kMaxURLChars) {
Emit("did-fail-load",
static_cast<int>(net::ERR_INVALID_URL),
net::ErrorToShortString(net::ERR_INVALID_URL),