Fix focus propagation and use shadow root for query

Signed-off-by: stevennovaryo <steven.novaryo@gmail.com>
This commit is contained in:
stevennovaryo 2025-05-21 15:07:00 +08:00
parent 335a1d7ad2
commit d78f1d9710
7 changed files with 64 additions and 54 deletions

View file

@ -118,7 +118,7 @@ rustls-pemfile = "2.0"
rustls-pki-types = "1.12"
script_layout_interface = { path = "components/shared/script_layout" }
script_traits = { path = "components/shared/script" }
selectors = { git = "https://github.com/stevennovaryo/stylo", branch = "text-editing-root" }
selectors = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
serde = "1.0.219"
serde_bytes = "0.11"
serde_json = "1.0"
@ -126,7 +126,7 @@ servo-media = { git = "https://github.com/servo/media" }
servo-media-dummy = { git = "https://github.com/servo/media" }
servo-media-gstreamer = { git = "https://github.com/servo/media" }
servo-tracing = { path = "components/servo_tracing" }
servo_arc = { git = "https://github.com/stevennovaryo/stylo", branch = "text-editing-root" }
servo_arc = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
smallbitvec = "2.6.0"
smallvec = "1.15"
snapshot = { path = "./components/shared/snapshot" }
@ -135,12 +135,12 @@ string_cache = "0.8"
string_cache_codegen = "0.5"
strum = "0.26"
strum_macros = "0.26"
stylo = { git = "https://github.com/stevennovaryo/stylo", branch = "text-editing-root" }
stylo_atoms = { git = "https://github.com/stevennovaryo/stylo", branch = "text-editing-root" }
stylo_config = { git = "https://github.com/stevennovaryo/stylo", branch = "text-editing-root" }
stylo_dom = { git = "https://github.com/stevennovaryo/stylo", branch = "text-editing-root" }
stylo_malloc_size_of = { git = "https://github.com/stevennovaryo/stylo", branch = "text-editing-root" }
stylo_traits = { git = "https://github.com/stevennovaryo/stylo", branch = "text-editing-root" }
stylo = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
stylo_atoms = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
stylo_config = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
stylo_dom = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
stylo_malloc_size_of = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
stylo_traits = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
surfman = { git = "https://github.com/servo/surfman", rev = "f7688b4585f9e0b5d4bf8ee8e4a91e82349610b1", features = ["chains"] }
syn = { version = "2", default-features = false, features = ["clone-impls", "derive", "parsing"] }
synstructure = "0.13"
@ -223,7 +223,7 @@ codegen-units = 1
#
# Or for Stylo:
#
# [patch."https://github.com/stylo/stylo"]
# [patch."https://github.com/servo/stylo"]
# selectors = { path = "../stylo/selectors" }
# servo_arc = { path = "../stylo/servo_arc" }
# stylo = { path = "../stylo/style" }

View file

@ -62,7 +62,7 @@ impl<'dom> NodeAndStyleInfo<'dom> {
// Whether this is a container for the editable text within a single-line text input.
pub(crate) fn is_single_line_text_input(&self) -> bool {
self.node.type_id() == LayoutNodeType::Element(LayoutElementType::HTMLInputElement) ||
self.node.is_text_editing_root()
self.node.is_text_editing_root()
}
pub(crate) fn pseudo(

View file

@ -2,7 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use std::any::Any;
use std::borrow::Cow;
use std::char::{ToLowercase, ToUppercase};
@ -303,6 +302,7 @@ impl InlineFormattingContextBuilder {
if new_text.is_empty() {
return;
}
let selection_range = info.get_selection_range();
if let Some(last_character) = new_text.chars().next_back() {
self.on_word_boundary = last_character.is_whitespace();

View file

@ -1556,11 +1556,14 @@ impl Document {
return;
}
// For a node within a text input UA shadow DOM, redirect the focus target into its shadow host.
let target_el = el.find_focusable_shadow_host_if_necessary();
self.begin_focus_transaction();
// Try to focus `el`. If it's not focusable, focus the document
// instead.
self.request_focus(None, FocusInitiator::Local, can_gc);
self.request_focus(Some(&*el), FocusInitiator::Local, can_gc);
self.request_focus(target_el.as_deref(), FocusInitiator::Local, can_gc);
}
let dom_event = DomRoot::upcast::<Event>(MouseEvent::for_platform_mouse_event(

View file

@ -1632,6 +1632,23 @@ impl Element {
)
}
pub(crate) fn find_focusable_shadow_host_if_necessary(&self) -> Option<DomRoot<Element>> {
if self.is_focusable_area() {
Some(DomRoot::from_ref(self))
} else if self.upcast::<Node>().is_text_editing_root() {
let containing_shadow_host = self.containing_shadow_root().map(|root| root.Host());
if containing_shadow_host
.as_ref()
.is_some_and(|e| e.is_focusable_area())
{
return containing_shadow_host;
}
panic!("Containing shadow host is not focusable");
} else {
None
}
}
pub(crate) fn is_actually_disabled(&self) -> bool {
let node = self.upcast::<Node>();
match node.type_id() {

View file

@ -103,7 +103,20 @@ const DEFAULT_FILE_INPUT_VALUE: &str = "No file chosen";
#[derive(Clone, JSTraceable, MallocSizeOf)]
#[cfg_attr(crown, crown::unrooted_must_root_lint::must_root)]
/// MYNOTES: document this and check name later.
/// Contains reference to text editing root and placeholder container element in the UA
/// shadow tree for `<input type=text>`. The following is the structure of the shadow tree.
///
/// ```
/// <input type="text">
/// <div id="inner-container">
/// <div id="input-editing-root"></div>
/// <div id="input-placeholder"></div>
/// </div>
/// </input>
/// ```
// TODO(stevennovaryo): We have an additional `<div>` element that contains both placeholder and editing root
// because we are using `position: absolute` to put the editing root and placeholder
// on top of each other. But we should probably provide a specifing layout algorithm instead.
struct InputTypeTextShadowTree {
text_container: Dom<HTMLDivElement>,
placeholder_container: Dom<HTMLDivElement>,
@ -120,9 +133,6 @@ struct InputTypeColorShadowTree {
}
// FIXME: These styles should be inside UA stylesheet, but it is not possible without internal pseudo element support.
// FIXME: We are setting `pointer-events: none;` because focus is not propagated to its ancestor.
// FIXME: We are using `position: absolute` to put place the editing root and placeholder
// on top of each other, but this will create a unnecessary element in between.
const TEXT_TREE_STYLE: &str = "
#input-editing-root::selection, #input-placeholder::selection {
background: rgba(176, 214, 255, 1.0);
@ -131,19 +141,18 @@ const TEXT_TREE_STYLE: &str = "
#input-container {
position: relative;
pointer-events: none;
}
#input-editing-root, #input-placeholder {
overflow-wrap: normal;
white-space: pre;
pointer-events: none;
}
#input-placeholder {
position: absolute;
color: grey;
overflow: hidden;
pointer-events: none;
}
";
@ -1145,11 +1154,7 @@ impl HTMLInputElement {
text_container
.upcast::<Element>()
.SetId(DOMString::from("input-editing-root"), can_gc);
// We should probably use pseudo element to check this.
// Chrome is using (private?) element attrs,
text_container
.upcast::<Node>()
.set_text_editing_root();
text_container.upcast::<Node>().set_text_editing_root();
inner_container
.upcast::<Node>()
.AppendChild(text_container.upcast::<Node>(), can_gc)
@ -1191,7 +1196,6 @@ impl HTMLInputElement {
}
let shadow_tree = self.shadow_tree.borrow();
// MYNOTES: will check again for shadow tree getter.
Ref::filter_map(shadow_tree, |shadow_tree| {
let shadow_tree = shadow_tree.as_ref()?;
match shadow_tree {
@ -1258,7 +1262,6 @@ impl HTMLInputElement {
}
let shadow_tree = self.shadow_tree.borrow();
// MYNOTES: will check again for shadow tree getter.
Ref::filter_map(shadow_tree, |shadow_tree| {
let shadow_tree = shadow_tree.as_ref()?;
match shadow_tree {
@ -1275,11 +1278,18 @@ impl HTMLInputElement {
let text_shadow_tree = self.text_shadow_tree(can_gc);
let value = self.Value();
let placeholder_text = match (value.is_empty(), self.placeholder.borrow().is_empty()) {
(true, false) => self.placeholder.to_owned().take(),
_ => DOMString::new(),
let placeholder_text = match value.is_empty() {
true => self.placeholder.to_owned().take(),
false => DOMString::new(),
};
// The addition of zero-width space here forces the text input to have an inline formatting
// context that might otherwise be trimmed if there's no text. This is important to ensure
// that the input element is at least as tall as the line gap of the caret:
// <https://drafts.csswg.org/css-ui/#element-with-default-preferred-size>.
//
// This is also used to ensure that the caret will still be rendered when the input is empty.
// TODO: Is there a less hacky way to do this?
let value_text = match value.is_empty() {
false => value,
true => "\u{200B}".into(),
@ -1416,7 +1426,6 @@ impl<'dom> LayoutHTMLInputElementHelpers<'dom> for LayoutDom<'dom, HTMLInputElem
self.unsafe_get().size.get()
}
// MYNOTES is implemented for text
fn selection_for_layout(self) -> Option<Range<usize>> {
if !self.upcast::<Element>().focus_state() {
return None;

View file

@ -1627,9 +1627,6 @@ pub(crate) trait LayoutNodeHelpers<'dom> {
/// Whether this element is a `<input>` rendered as text or a `<textarea>`.
fn is_text_input(&self) -> bool;
/// Whether this element is a text input with Shadow DOM.
fn is_text_input_with_shadow_dom(&self) -> bool;
/// Whether this element serve as a container of editable text for a text input.
fn is_text_editing_root(&self) -> bool;
fn text_content(self) -> Cow<'dom, str>;
@ -1815,21 +1812,6 @@ impl<'dom> LayoutNodeHelpers<'dom> for LayoutDom<'dom, Node> {
}
}
fn is_text_input_with_shadow_dom(&self) -> bool {
let type_id = self.type_id_for_layout();
if type_id ==
NodeTypeId::Element(ElementTypeId::HTMLElement(
HTMLElementTypeId::HTMLInputElement,
))
{
let input = self.unsafe_get().downcast::<HTMLInputElement>().unwrap();
matches!(input.input_type(), InputType::Color | InputType::Text)
} else {
false
}
}
fn is_text_editing_root(&self) -> bool {
self.unsafe_get().is_text_editing_root()
}
@ -1854,19 +1836,18 @@ impl<'dom> LayoutNodeHelpers<'dom> for LayoutDom<'dom, Node> {
// This container is a text editing root of a <input> or <textarea> element.
// So we should find those corresponding element, and get its selection.
if self.is_text_editing_root() {
let mut maybe_parent_node = self.composed_parent_node_ref();
while let Some(parent_node) = maybe_parent_node {
if let Some(area) = parent_node.downcast::<HTMLTextAreaElement>() {
let shadow_root = self.containing_shadow_root_for_layout();
if let Some(containing_shadow_host) = shadow_root.map(|root| root.get_host_for_layout())
{
if let Some(area) = containing_shadow_host.downcast::<HTMLTextAreaElement>() {
return area.selection_for_layout();
}
if let Some(input) = parent_node.downcast::<HTMLInputElement>() {
if let Some(input) = containing_shadow_host.downcast::<HTMLInputElement>() {
return input.selection_for_layout();
}
maybe_parent_node = parent_node.composed_parent_node_ref();
}
panic!("Text input element not found!");
panic!("Text input element not found");
}
if let Some(area) = self.downcast::<HTMLTextAreaElement>() {