LibWeb: Add support for range deletion.

This commit is contained in:
asynts 2020-12-01 23:36:12 +01:00 committed by Andreas Kling
commit 43dc47a494
Notes: sideshowbarker 2024-07-19 00:57:20 +09:00
8 changed files with 107 additions and 6 deletions

View file

@ -39,6 +39,24 @@ Position::~Position()
{
}
Range Range::normalized() const
{
if (!is_valid())
return {};
if (m_start.node() == m_end.node()) {
if (m_start.offset() <= m_end.offset())
return *this;
return { m_end, m_start };
}
if (m_start.node()->is_before(*m_end.node()))
return *this;
return { m_end, m_start };
}
const LogStream& operator<<(const LogStream& stream, const Position& position)
{
if (!position.node())