|
@@ -1,11 +1,14 @@
|
|
|
/*
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
+ * Copyright (c) 2021, Max Wipfli <mail@maxwipfli.ch>
|
|
|
*
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
*/
|
|
|
|
|
|
+#include <AK/Utf8View.h>
|
|
|
#include <LibWeb/DOM/Node.h>
|
|
|
#include <LibWeb/DOM/Position.h>
|
|
|
+#include <LibWeb/DOM/Text.h>
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
|
@@ -26,4 +29,56 @@ String Position::to_string() const
|
|
|
return String::formatted("DOM::Position({} ({})), {})", node()->node_name(), node(), offset());
|
|
|
}
|
|
|
|
|
|
+bool Position::increment_offset()
|
|
|
+{
|
|
|
+ if (!is<DOM::Text>(*m_node))
|
|
|
+ return false;
|
|
|
+
|
|
|
+ auto& node = downcast<DOM::Text>(*m_node);
|
|
|
+ auto text = Utf8View(node.data());
|
|
|
+
|
|
|
+ for (auto iterator = text.begin(); !iterator.done(); ++iterator) {
|
|
|
+ if (text.byte_offset_of(iterator) >= m_offset) {
|
|
|
+ // NOTE: If the current offset is inside a multi-byte codepoint, it will be moved to the start of the next codepoint.
|
|
|
+ m_offset = text.byte_offset_of(++iterator);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // NOTE: Already at end of current node.
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+bool Position::decrement_offset()
|
|
|
+{
|
|
|
+ if (m_offset == 0 || !is<DOM::Text>(*m_node))
|
|
|
+ return false;
|
|
|
+
|
|
|
+ auto& node = downcast<DOM::Text>(*m_node);
|
|
|
+ auto text = Utf8View(node.data());
|
|
|
+
|
|
|
+ size_t last_smaller_offset = 0;
|
|
|
+
|
|
|
+ for (auto iterator = text.begin(); !iterator.done(); ++iterator) {
|
|
|
+ auto byte_offset = text.byte_offset_of(iterator);
|
|
|
+ if (byte_offset >= m_offset) {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ last_smaller_offset = text.byte_offset_of(iterator);
|
|
|
+ }
|
|
|
+
|
|
|
+ // NOTE: If the current offset is inside a multi-byte codepoint, it will be moved to the start of that codepoint.
|
|
|
+ m_offset = last_smaller_offset;
|
|
|
+ return true;
|
|
|
+}
|
|
|
+
|
|
|
+bool Position::offset_is_at_end_of_node() const
|
|
|
+{
|
|
|
+ if (!is<DOM::Text>(*m_node))
|
|
|
+ return false;
|
|
|
+
|
|
|
+ auto& node = downcast<DOM::Text>(*m_node);
|
|
|
+ auto text = node.data();
|
|
|
+ return m_offset == text.length();
|
|
|
+}
|
|
|
+
|
|
|
}
|