1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

AK: Support fragment in URL

This commit is contained in:
Linus Groh 2020-04-11 23:38:13 +01:00 committed by Andreas Kling
parent eff27f39d5
commit 21a61b276b
2 changed files with 12 additions and 0 deletions

View file

@ -174,6 +174,10 @@ String URL::to_string() const
builder.append('?');
builder.append(m_query);
}
if (!m_fragment.is_empty()) {
builder.append('#');
builder.append(m_fragment);
}
return builder.to_string();
}
@ -233,6 +237,11 @@ void URL::set_query(const String& query)
m_query = query;
}
void URL::set_fragment(const String& fragment)
{
m_fragment = fragment;
}
bool URL::compute_validity() const
{
// FIXME: This is by no means complete.