[Webkit-unassigned] [Bug 82506] [Qt][WK2] QQuickWebView fails to load an url if the same url is requested again to be loaded

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 28 13:44:41 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=82506





--- Comment #3 from Marcelo Lira <marcelo.lira at openbossa.org>  2012-03-28 13:44:41 PST ---
I was thinking that if the user interrupted the first page load caused by attributing something to webView.url, and then setting again webView.url with the same or other address, the first page load should not be considered a failure, because the user did this on purpose.

In other words, doing:

webView.url = "www.one.com"
webView.url = "www.one.com"

should be semantically equivalent to:

webView.load("www.one.com")
webView.reload()

and

webView.load("www.one.com")
webView.stop()
webView.load("www.two.com")

for when the addresses are different.
It should not issue an error in both cases, because the first page was expected to stop loading.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list