You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix focus in all examples. Pass kwargs to Handlers' callbacks (BC BREAK!).
Fix focus issue in qt.py and gtk2.py examples during app initial
loading (cztomczak#284). The solution is to call SetFocus in OnLoadStart once.
Pass keyword arguments to Handlers' callbacks (cztomczak#291). This will break
many of existing code for Handlers' callbacks. Similar changes were also
applied to: CookieVisitor, StringVisitor, WebRequestClient.
In JavascriptDialogCallback.Continue "userInput" argument was renamed
to "user_input".
Fix PyCharm warnings in kivy_.py example (cztomczak#285).
Rename JavascriptContextHandler to V8ContextHandler (API docs only
changes).
Update tools/apidocs.py. Sort top-level headings by name.
Copy file name to clipboardExpand all lines: api/LoadHandler.md
+17-13Lines changed: 17 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,9 @@ Table of contents:
25
25
| Parameter | Type |
26
26
| --- | --- |
27
27
| browser |[Browser](Browser.md)|
28
-
|isLoading| bool |
29
-
|canGoBack| bool |
30
-
|canGoForward| bool |
28
+
|is_loading| bool |
29
+
|can_go_back| bool |
30
+
|can_go_forward| bool |
31
31
|__Return__| void |
32
32
33
33
Called when the loading state has changed. This callback will be executed
@@ -78,7 +78,7 @@ Not yet implemented. See [Issue #32](../issues/32).
78
78
| --- | --- |
79
79
| browser |[Browser](Browser.md)|
80
80
| frame |[Frame](Frame.md)|
81
-
|httpStatusCode| int |
81
+
|http_code| int |
82
82
|__Return__| void |
83
83
84
84
Called when the browser is done loading a frame. The |frame| value will
@@ -89,9 +89,12 @@ will always be called for all frames irrespective of whether the request
89
89
completes successfully. For notification of overall browser load status use
90
90
OnLoadingStateChange instead.
91
91
92
-
This event behaves like window.onload, it waits for all the content to load (e.g. images), there is currently no callback for a DOMContentLoaded event, see [Issue #32](../issues/32).
92
+
This event behaves like window.onload, it waits for all the content
93
+
to load (e.g. images), there is currently no callback for
94
+
a DOMContentLoaded event, see [Issue #32](../issues/32).
93
95
94
-
There are some cases when this callback won't get called, see this topic: http://www.magpcss.org/ceforum/viewtopic.php?f=6&t=10906
96
+
There are some cases when this callback won't get called, see this
0 commit comments