LibWeb: Remove API URL character encoding

See https://github.com/whatwg/html/pull/9755/
This commit is contained in:
Gingeh
2026-01-13 21:40:14 +11:00
committed by Sam Atkins
parent 68a349974c
commit fbde887cc8
Notes: github-actions[bot] 2026-01-13 13:52:43 +00:00
9 changed files with 0 additions and 20 deletions

View File

@@ -24,7 +24,6 @@ public:
virtual ~EnvironmentSettingsSnapshot() override;
virtual GC::Ptr<DOM::Document> responsible_document() override { return nullptr; }
virtual String api_url_character_encoding() const override { return m_api_url_character_encoding; }
virtual URL::URL api_base_url() const override { return m_url; }
virtual URL::Origin origin() const override { return m_origin; }
virtual bool has_cross_site_ancestor() const override { return m_has_cross_site_ancestor; }
@@ -36,7 +35,6 @@ protected:
virtual void visit_edges(Cell::Visitor&) override;
private:
String m_api_url_character_encoding;
URL::URL m_url;
URL::Origin m_origin;
bool m_has_cross_site_ancestor;