Revision control
Copy as Markdown
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
import Foundation
/// The BrowsingContext is used by the Security Manager to determine if a URL can be navigated to
public struct BrowsingContext {
var type: BrowsingType
var url: URL
public init(type: BrowsingType, url: URL) {
self.type = type
self.url = url
}
}