Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes feedback
  • Loading branch information
HugoOlthof committed Apr 12, 2023
commit 79e234d4b6ee25ade12bd98b8bd5a55d92d90a02
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class NSHttpUrlResponse {
required this.statusCode,
});

/// The URL being requested.
/// The response’s HTTP status code.
final int statusCode;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class WKNavigationAction {
final WKNavigationType navigationType;
}

/// An object that contains information about a response to a navigation request,.
/// An object that contains information about a response to a navigation request.
///
/// Wraps [WKNavigationResponse](https://developer.apple.com/documentation/webkit/wknavigationresponse?language=objc).
@immutable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void main() {
expect(callbackUrl, 'https://www.google.com');
});

test('setOnPageError from decidePolicyForNavigationResponse', () {
test('setOnHttpError from decidePolicyForNavigationResponse', () {
final WebKitNavigationDelegate webKitDelgate = WebKitNavigationDelegate(
const WebKitNavigationDelegateCreationParams(
webKitProxy: WebKitProxy(
Expand Down