|
@@ -833,6 +833,19 @@ this purpose.
|
|
|
|
|
|
Calling `event.preventDefault()` does __NOT__ have any effect.
|
|
|
|
|
|
+### Event: 'did-start-navigation'
|
|
|
+
|
|
|
+Returns:
|
|
|
+
|
|
|
+* `url` String
|
|
|
+* `isInPlace` Boolean
|
|
|
+* `isMainFrame` Boolean
|
|
|
+* `frameProcessId` Integer
|
|
|
+* `frameRoutingId` Integer
|
|
|
+
|
|
|
+Emitted when any frame (including main) starts navigating. `isInPlace` will be
|
|
|
+`true` for in-page navigations.
|
|
|
+
|
|
|
### Event: 'did-navigate'
|
|
|
|
|
|
Returns:
|
|
@@ -845,6 +858,23 @@ This event is not emitted for in-page navigations, such as clicking anchor links
|
|
|
or updating the `window.location.hash`. Use `did-navigate-in-page` event for
|
|
|
this purpose.
|
|
|
|
|
|
+### Event: 'did-frame-navigate'
|
|
|
+
|
|
|
+Returns:
|
|
|
+
|
|
|
+* `url` String
|
|
|
+* `httpResponseCode` Integer - -1 for non HTTP navigations
|
|
|
+* `httpStatusText` String - empty for non HTTP navigations,
|
|
|
+* `isMainFrame` Boolean
|
|
|
+* `frameProcessId` Integer
|
|
|
+* `frameRoutingId` Integer
|
|
|
+
|
|
|
+Emitted when any frame navigation is done.
|
|
|
+
|
|
|
+This event is not emitted for in-page navigations, such as clicking anchor links
|
|
|
+or updating the `window.location.hash`. Use `did-navigate-in-page` event for
|
|
|
+this purpose.
|
|
|
+
|
|
|
### Event: 'did-navigate-in-page'
|
|
|
|
|
|
Returns:
|