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
Corresponds to:
- whatwg/html#10898
- whatwg/html#10971
I've also updated the imported WPT test as it's been recently changed to
account for 10898 being merged.
// 3. If navigationAPIState is not null, then set destinationNavigationAPIState to navigationAPIState.
1624
1627
auto destination_navigation_api_state = navigation_api_state.has_value() ? *navigation_api_state : active_session_history_entry()->navigation_api_state();
1625
1628
1626
-
// 4. Let continue be the result of firing a push/replace/reload navigate event at navigation with navigationType set to historyHandling, isSameDocument set to true,
1627
-
// userInvolvement set to userInvolvement, and destinationURL set to url, and navigationAPIState set to destinationNavigationAPIState.
1629
+
// 4. Let continue be the result of firing a push/replace/reload navigate event at navigation with navigationType
1630
+
// set to historyHandling, isSameDocument set to true, userInvolvement set to userInvolvement, sourceElement set
1631
+
// to sourceElement, destinationURL set to url, and navigationAPIState set to destinationNavigationAPIState.
1628
1632
auto navigation_type = history_handling == HistoryHandlingBehavior::Push ? Bindings::NavigationType::Push : Bindings::NavigationType::Replace;
// 9. Return the result of performing the inner navigate event firing algorithm given navigation, "traverse", event, destination, userInvolvement, null, and null.
1298
+
// 9. Return the result of performing the inner navigate event firing algorithm given navigation, "traverse",
1299
+
// event, destination, userInvolvement, sourceElement, null, and null.
1295
1300
// AD-HOC: We don't pass the event, but we do pass the classic_history_api state at the end to be set later
0 commit comments