You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""
[2024-01-20T14:16:08Z ERROR script::dom::bindings::error] Error at https://browserbench.org/:22:9 "this" object does not implement interface HTMLImageElement.
DEBUG: -------------------------------
DEBUG: Ember : 2.6.2
DEBUG: jQuery : 2.2.4
DEBUG: -------------------------------
assertion left == right failed: Attempt to use script or layout while DOM not in a stable state
left: 1
right: 0 (thread Script(1,4), at components/script/dom/document.rs:3264)
[2024-01-20T14:16:28Z ERROR servo::main2] assertion left == right failed: Attempt to use script or layout while DOM not in a stable state
left: 1
right: 0
"""
The text was updated successfully, but these errors were encountered:
From reading the stack trace and affected code, this looks like:
an element in the DOM tree has focus
the focused element is removed from the tree
the focus is fixed by marking the body element as focused
we attempt to dispatch a blur/focus event
The issue here appears to be that Node::remove adds a layout blocker, then invokes the element-specific removal logic, then removes the layout blocker. Any events dispatched by the element-specific logic will hit this problem. I'm not sure if the correct outcome here is removing the blocker sooner, or if the element-specific logic should be queued as a task instead.
[2024-01-20T14:16:08Z ERROR script::dom::bindings::error] Error at https://browserbench.org/:22:9 "this" object does not implement interface HTMLImageElement.
DEBUG: -------------------------------
DEBUG: Ember : 2.6.2
DEBUG: jQuery : 2.2.4
DEBUG: -------------------------------
assertion
left == right
failed: Attempt to use script or layout while DOM not in a stable stateleft: 1
right: 0 (thread Script(1,4), at components/script/dom/document.rs:3264)
[2024-01-20T14:16:28Z ERROR servo::main2] assertion
left == right
failed: Attempt to use script or layout while DOM not in a stable stateleft: 1
right: 0
"""
The text was updated successfully, but these errors were encountered: