|
@@ -36,7 +36,7 @@ class ParsingContext {
|
|
|
public:
|
|
|
ParsingContext() = default;
|
|
|
explicit ParsingContext(DOM::Document const&);
|
|
|
- explicit ParsingContext(DOM::Document const&, Optional<AK::URL> const);
|
|
|
+ explicit ParsingContext(DOM::Document const&, AK::URL);
|
|
|
explicit ParsingContext(DOM::ParentNode&);
|
|
|
|
|
|
bool in_quirks_mode() const;
|
|
@@ -49,7 +49,7 @@ public:
|
|
|
private:
|
|
|
DOM::Document const* m_document { nullptr };
|
|
|
PropertyID m_current_property_id { PropertyID::Invalid };
|
|
|
- Optional<AK::URL> m_url;
|
|
|
+ AK::URL m_url;
|
|
|
};
|
|
|
|
|
|
template<typename T>
|