mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
This file was getting way too big and too cluttered. Instead, split it up into multiple files in a dedicated folder. Part of #25005 Part of #43709 Testing: It compiles Signed-off-by: Tim van der Lippe <tvanderlippe@gmail.com>
387 lines
16 KiB
Rust
387 lines
16 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* 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::cell::{Cell, Ref};
|
|
|
|
use bitflags::bitflags;
|
|
use embedder_traits::FocusSequenceNumber;
|
|
use script_bindings::codegen::GenericBindings::ShadowRootBinding::ShadowRootMethods;
|
|
use script_bindings::inheritance::Castable;
|
|
use script_bindings::root::{Dom, DomRoot};
|
|
use script_bindings::script_runtime::CanGc;
|
|
use servo_constellation_traits::ScriptToConstellationMessage;
|
|
|
|
use crate::dom::bindings::cell::DomRefCell;
|
|
use crate::dom::focusevent::FocusEventType;
|
|
use crate::dom::types::{Element, EventTarget, FocusEvent, HTMLElement, HTMLIFrameElement, Window};
|
|
use crate::dom::{Document, Event, EventBubbles, EventCancelable, Node, NodeTraits};
|
|
|
|
pub(crate) enum FocusOperation {
|
|
Focus(FocusableArea),
|
|
Unfocus,
|
|
}
|
|
|
|
/// The kind of focusable area a [`FocusableArea`] is. A [`FocusableArea`] may be click focusable,
|
|
/// sequentially focusable, or both.
|
|
#[derive(Clone, Copy, Debug, Default, JSTraceable, MallocSizeOf, PartialEq)]
|
|
pub(crate) struct FocusableAreaKind(u8);
|
|
|
|
bitflags! {
|
|
impl FocusableAreaKind: u8 {
|
|
/// <https://html.spec.whatwg.org/multipage/#click-focusable>
|
|
///
|
|
/// > A focusable area is said to be click focusable if the user agent determines that it is
|
|
/// > click focusable. User agents should consider focusable areas with non-null tabindex values
|
|
/// > to be click focusable.
|
|
const Click = 1 << 0;
|
|
/// <https://html.spec.whatwg.org/multipage/#sequentially-focusable>.
|
|
///
|
|
/// > A focusable area is said to be sequentially focusable if it is included in its
|
|
/// > Document's sequential focus navigation order and the user agent determines that it is
|
|
/// > sequentially focusable.
|
|
const Sequential = 1 << 1;
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug, Default, JSTraceable, MallocSizeOf, PartialEq)]
|
|
pub(crate) enum FocusableArea {
|
|
Node {
|
|
node: DomRoot<Node>,
|
|
kind: FocusableAreaKind,
|
|
},
|
|
#[default]
|
|
Viewport,
|
|
}
|
|
|
|
impl FocusableArea {
|
|
pub(crate) fn kind(&self) -> FocusableAreaKind {
|
|
match self {
|
|
FocusableArea::Node { kind, .. } => *kind,
|
|
FocusableArea::Viewport => FocusableAreaKind::Click | FocusableAreaKind::Sequential,
|
|
}
|
|
}
|
|
|
|
/// If this focusable area is a node, return it as an [`Element`] if it is possible, otherwise
|
|
/// return `None`. This is the [`Element`] to use for applying `:focus` state and for firing
|
|
/// `blur` and `focus` events if any.
|
|
///
|
|
/// Note: This is currently in a transitional state while the code moves more toward the
|
|
/// specification.
|
|
pub(crate) fn element(&self) -> Option<&Element> {
|
|
match self {
|
|
FocusableArea::Node { node, .. } => node.downcast(),
|
|
FocusableArea::Viewport => None,
|
|
}
|
|
}
|
|
|
|
/// <https://html.spec.whatwg.org/multipage/#dom-anchor>
|
|
pub(crate) fn dom_anchor(&self, document: &Document) -> DomRoot<Node> {
|
|
match self {
|
|
FocusableArea::Node { node, .. } => node.clone(),
|
|
FocusableArea::Viewport => DomRoot::from_ref(document.upcast()),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Specifies the initiator of a focus operation.
|
|
#[derive(Clone, Copy, PartialEq)]
|
|
pub(crate) enum FocusInitiator {
|
|
/// The operation is initiated by a focus change in this [`Document`]. This
|
|
/// means the change might trigger focus changes in parent [`Document`]s.
|
|
Local,
|
|
/// The operation is initiated somewhere else, and we are updating our
|
|
/// internal state accordingly.
|
|
Remote,
|
|
}
|
|
|
|
/// The [`DocumentFocusHandler`] is a structure responsible for handling and storing data related to
|
|
/// focus for the `Document`. It exists to decrease the size of the `Document`.
|
|
/// structure.
|
|
#[derive(JSTraceable, MallocSizeOf)]
|
|
#[cfg_attr(crown, crown::unrooted_must_root_lint::must_root)]
|
|
pub(crate) struct DocumentFocusHandler {
|
|
/// The [`Window`] element for this [`DocumentFocusHandler`].
|
|
window: Dom<Window>,
|
|
/// The focused area of the [`Document`].
|
|
///
|
|
/// <https://html.spec.whatwg.org/multipage/#focused-area-of-the-document>
|
|
focused_area: DomRefCell<FocusableArea>,
|
|
/// The last sequence number sent to the constellation.
|
|
#[no_trace]
|
|
focus_sequence: Cell<FocusSequenceNumber>,
|
|
/// Indicates whether the container is included in the top-level browsing
|
|
/// context's focus chain (not considering system focus). Permanently `true`
|
|
/// for a top-level document.
|
|
has_focus: Cell<bool>,
|
|
}
|
|
|
|
impl DocumentFocusHandler {
|
|
pub(crate) fn new(window: &Window, has_focus: bool) -> Self {
|
|
Self {
|
|
window: Dom::from_ref(window),
|
|
focused_area: Default::default(),
|
|
focus_sequence: Cell::new(FocusSequenceNumber::default()),
|
|
has_focus: Cell::new(has_focus),
|
|
}
|
|
}
|
|
|
|
pub(crate) fn has_focus(&self) -> bool {
|
|
self.has_focus.get()
|
|
}
|
|
|
|
/// Return the element that currently has focus. If `None` is returned the viewport itself has focus.
|
|
pub(crate) fn focused_area<'a>(&'a self) -> Ref<'a, FocusableArea> {
|
|
let focused_area = self.focused_area.borrow();
|
|
Ref::map(focused_area, |focused_area| focused_area)
|
|
}
|
|
|
|
/// Set the element that currently has focus and update the focus state for both the previously
|
|
/// set element (if any) and the new one, as well as the new one. This will not do anything if
|
|
/// the new element is the same as the previous one. Note that this *will not* fire any focus
|
|
/// events. If that is necessary the [`DocumentFocusHandler::focus`] should be used.
|
|
pub(crate) fn set_focused_element(&self, new_focusable_area: FocusableArea) {
|
|
if new_focusable_area == *self.focused_area.borrow() {
|
|
return;
|
|
}
|
|
|
|
// From <https://html.spec.whatwg.org/multipage/#selector-focus>
|
|
// > For the purposes of the CSS :focus pseudo-class, an element has the focus when:
|
|
// > - it is not itself a navigable container; and
|
|
// > - any of the following are true:
|
|
// > - it is one of the elements listed in the current focus chain of the top-level
|
|
// > traversable; or
|
|
// > - its shadow root shadowRoot is not null and shadowRoot is the root of at least one
|
|
// > element that has the focus.
|
|
//
|
|
// We are trying to accomplish the last requirement here, by walking up the tree and
|
|
// marking each shadow host as focused.
|
|
fn recursively_set_focus_status(element: &Element, new_state: bool) {
|
|
element.set_focus_state(new_state);
|
|
|
|
let Some(shadow_root) = element.containing_shadow_root() else {
|
|
return;
|
|
};
|
|
recursively_set_focus_status(&shadow_root.Host(), new_state);
|
|
}
|
|
|
|
if let Some(previously_focused_element) = self.focused_area.borrow().element() {
|
|
recursively_set_focus_status(previously_focused_element, false);
|
|
}
|
|
if let Some(newly_focused_element) = new_focusable_area.element() {
|
|
recursively_set_focus_status(newly_focused_element, true);
|
|
}
|
|
|
|
*self.focused_area.borrow_mut() = new_focusable_area;
|
|
}
|
|
|
|
/// Get the last sequence number sent to the constellation.
|
|
///
|
|
/// Received focus-related messages with sequence numbers less than the one
|
|
/// returned by this method must be discarded.
|
|
pub fn focus_sequence(&self) -> FocusSequenceNumber {
|
|
self.focus_sequence.get()
|
|
}
|
|
|
|
/// Generate the next sequence number for focus-related messages.
|
|
fn increment_fetch_focus_sequence(&self) -> FocusSequenceNumber {
|
|
self.focus_sequence.set(FocusSequenceNumber(
|
|
self.focus_sequence
|
|
.get()
|
|
.0
|
|
.checked_add(1)
|
|
.expect("too many focus messages have been sent"),
|
|
));
|
|
self.focus_sequence.get()
|
|
}
|
|
|
|
/// Reassign the focus context to the element that last requested focus during this
|
|
/// transaction, or the document if no elements requested it.
|
|
pub(crate) fn focus(
|
|
&self,
|
|
focus_operation: FocusOperation,
|
|
focus_initiator: FocusInitiator,
|
|
can_gc: CanGc,
|
|
) {
|
|
let (new_focused, new_focus_state) = match focus_operation {
|
|
FocusOperation::Focus(focusable_area) => (focusable_area, true),
|
|
FocusOperation::Unfocus => (FocusableArea::Viewport, false),
|
|
};
|
|
|
|
let old_focus_state = self.has_focus.get();
|
|
|
|
// `*_focused_filtered` indicates the local element (if any) included in
|
|
// the top-level BC's focus chain.
|
|
let old_focused_filtered = old_focus_state.then(|| self.focused_area().clone());
|
|
let new_focused_filtered = new_focus_state.then(|| new_focused.clone());
|
|
debug!("Committing focus transaction: {old_focused_filtered:?} → {new_focused_filtered:?}",);
|
|
|
|
if old_focused_filtered != new_focused_filtered {
|
|
// Although the "focusing steps" in the HTML specification say to wait until after firing
|
|
// the "blur" event to change the currently focused area of the Document, browsers tend
|
|
// to set it to the viewport before firing the "blur" event.
|
|
//
|
|
// See https://github.com/whatwg/html/issues/1569
|
|
self.set_focused_element(FocusableArea::Viewport);
|
|
|
|
if let Some(element) = old_focused_filtered
|
|
.as_ref()
|
|
.and_then(|focusable_area| focusable_area.element())
|
|
{
|
|
if element.upcast::<Node>().is_connected() {
|
|
self.fire_focus_event(
|
|
FocusEventType::Blur,
|
|
element.upcast(),
|
|
new_focused_filtered.as_ref(),
|
|
can_gc,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
if old_focus_state != new_focus_state && !new_focus_state {
|
|
self.fire_focus_event(FocusEventType::Blur, self.window.upcast(), None, can_gc);
|
|
}
|
|
|
|
self.set_focused_element(new_focused.clone());
|
|
self.has_focus.set(new_focus_state);
|
|
|
|
if old_focus_state != new_focus_state && new_focus_state {
|
|
self.fire_focus_event(FocusEventType::Focus, self.window.upcast(), None, can_gc);
|
|
}
|
|
|
|
if old_focused_filtered != new_focused_filtered {
|
|
if let Some(element) = new_focused_filtered
|
|
.as_ref()
|
|
.and_then(|focusable_area| focusable_area.element())
|
|
{
|
|
if let Some(html_element) = element.downcast::<HTMLElement>() {
|
|
html_element.handle_focus_state_for_contenteditable(can_gc);
|
|
}
|
|
|
|
self.fire_focus_event(
|
|
FocusEventType::Focus,
|
|
element.upcast(),
|
|
old_focused_filtered.as_ref(),
|
|
can_gc,
|
|
);
|
|
}
|
|
}
|
|
|
|
if focus_initiator == FocusInitiator::Remote {
|
|
return;
|
|
}
|
|
|
|
// We are the initiator of the focus operation, so we must broadcast
|
|
// the change we intend to make.
|
|
match (old_focus_state, new_focus_state) {
|
|
(_, true) => {
|
|
// Advertise the change in the focus chain.
|
|
// <https://html.spec.whatwg.org/multipage/#focus-chain>
|
|
// <https://html.spec.whatwg.org/multipage/#focusing-steps>
|
|
//
|
|
// If the top-level BC doesn't have system focus, this won't
|
|
// have an immediate effect, but it will when we gain system
|
|
// focus again. Therefore we still have to send `ScriptMsg::
|
|
// Focus`.
|
|
//
|
|
// When a container with a non-null nested browsing context is
|
|
// focused, its active document becomes the focused area of the
|
|
// top-level browsing context instead. Therefore we need to let
|
|
// the constellation know if such a container is focused.
|
|
//
|
|
// > The focusing steps for an object `new focus target` [...]
|
|
// >
|
|
// > 3. If `new focus target` is a browsing context container
|
|
// > with non-null nested browsing context, then set
|
|
// > `new focus target` to the nested browsing context's
|
|
// > active document.
|
|
let child_browsing_context_id = new_focused
|
|
.element()
|
|
.and_then(|element| element.downcast::<HTMLIFrameElement>())
|
|
.and_then(|iframe| iframe.browsing_context_id());
|
|
|
|
let sequence = self.increment_fetch_focus_sequence();
|
|
|
|
debug!(
|
|
"Advertising the focus request to the constellation \
|
|
with sequence number {} and child BC ID {}",
|
|
sequence,
|
|
child_browsing_context_id
|
|
.as_ref()
|
|
.map(|id| id as &dyn std::fmt::Display)
|
|
.unwrap_or(&"(none)"),
|
|
);
|
|
|
|
self.window.send_to_constellation(
|
|
ScriptToConstellationMessage::FocusAncestorBrowsingContextsForFocusingSteps(
|
|
child_browsing_context_id,
|
|
sequence,
|
|
),
|
|
);
|
|
},
|
|
(false, false) => {
|
|
// Our `Document` doesn't have focus, and we intend to keep it
|
|
// this way.
|
|
},
|
|
(true, false) => {
|
|
unreachable!(
|
|
"Can't lose the document's focus without specifying \
|
|
another one to focus"
|
|
);
|
|
},
|
|
}
|
|
}
|
|
|
|
/// <https://html.spec.whatwg.org/multipage/#fire-a-focus-event>
|
|
fn fire_focus_event(
|
|
&self,
|
|
focus_event_type: FocusEventType,
|
|
event_target: &EventTarget,
|
|
related_target: Option<&FocusableArea>,
|
|
can_gc: CanGc,
|
|
) {
|
|
let (event_name, does_bubble) = match focus_event_type {
|
|
FocusEventType::Focus => ("focus".into(), EventBubbles::DoesNotBubble),
|
|
FocusEventType::Blur => ("blur".into(), EventBubbles::DoesNotBubble),
|
|
};
|
|
let related_target_element =
|
|
related_target.and_then(|focusable_area| focusable_area.element());
|
|
let event = FocusEvent::new(
|
|
&self.window,
|
|
event_name,
|
|
does_bubble,
|
|
EventCancelable::NotCancelable,
|
|
Some(&self.window),
|
|
0i32,
|
|
related_target_element.map(|element| element.upcast()),
|
|
can_gc,
|
|
);
|
|
let event = event.upcast::<Event>();
|
|
event.set_trusted(true);
|
|
event.fire(event_target, can_gc);
|
|
}
|
|
|
|
/// <https://html.spec.whatwg.org/multipage/#focus-fixup-rule>
|
|
/// > For each doc of docs, if the focused area of doc is not a focusable area, then run the
|
|
/// > focusing steps for doc's viewport, and set doc's relevant global object's navigation API's
|
|
/// > focus changed during ongoing navigation to false.
|
|
///
|
|
/// TODO: Handle the "focus changed during ongoing navigation" flag.
|
|
pub(crate) fn perform_focus_fixup_rule(&self, can_gc: CanGc) {
|
|
if self
|
|
.focused_area
|
|
.borrow()
|
|
.element()
|
|
.is_none_or(|focused| focused.is_focusable_area())
|
|
{
|
|
return;
|
|
}
|
|
self.focus(
|
|
FocusOperation::Focus(FocusableArea::Viewport),
|
|
FocusInitiator::Local,
|
|
can_gc,
|
|
);
|
|
}
|
|
}
|