зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset 125344f9e446 (bug 1911010) for causing linux bustages in nsINode.cpp.
This commit is contained in:
Родитель
7e09cc440e
Коммит
ada4e189a4
|
@ -185,7 +185,7 @@ HTMLSlotElement* nsIContent::GetAssignedSlotByMode() const {
|
|||
}
|
||||
|
||||
nsIContent::IMEState nsIContent::GetDesiredIMEState() {
|
||||
if (!IsEditable() || !IsInComposedDoc()) {
|
||||
if (!IsEditable()) {
|
||||
// Check for the special case where we're dealing with elements which don't
|
||||
// have the editable flag set, but are readwrite (such as text controls).
|
||||
if (!IsElement() ||
|
||||
|
|
|
@ -591,73 +591,46 @@ nsIContent* nsINode::GetSelectionRootContent(PresShell* aPresShell,
|
|||
bool aAllowCrossShadowBoundary) {
|
||||
NS_ENSURE_TRUE(aPresShell, nullptr);
|
||||
|
||||
const bool isContent = IsContent();
|
||||
if (IsDocument()) return AsDocument()->GetRootElement();
|
||||
if (!IsContent()) return nullptr;
|
||||
|
||||
if (!isContent && !IsDocument()) {
|
||||
if (GetComposedDoc() != aPresShell->GetDocument()) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
if (isContent) {
|
||||
if (GetComposedDoc() != aPresShell->GetDocument()) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
if (AsContent()->HasIndependentSelection() ||
|
||||
IsInNativeAnonymousSubtree()) {
|
||||
// This node should be an inclusive descendant of input/textarea editor.
|
||||
// In that case, the anonymous <div> for TextEditor should be always the
|
||||
// selection root.
|
||||
// FIXME: If Selection for the document is collapsed in <input> or
|
||||
// <textarea>, returning anonymous <div> may make the callers confused.
|
||||
// Perhaps, we should do this only when this is in the native anonymous
|
||||
// subtree unless the callers explicitly want to retrieve the anonymous
|
||||
// <div> from a text control element.
|
||||
if (Element* anonymousDivElement =
|
||||
GetAnonymousRootElementOfTextEditor()) {
|
||||
return anonymousDivElement;
|
||||
}
|
||||
if (AsContent()->HasIndependentSelection() || IsInNativeAnonymousSubtree()) {
|
||||
// This node should be an inclusive descendant of input/textarea editor.
|
||||
// In that case, the anonymous <div> for TextEditor should be always the
|
||||
// selection root.
|
||||
// FIXME: If Selection for the document is collapsed in <input> or
|
||||
// <textarea>, returning anonymous <div> may make the callers confused.
|
||||
// Perhaps, we should do this only when this is in the native anonymous
|
||||
// subtree unless the callers explicitly want to retrieve the anonymous
|
||||
// <div> from a text control element.
|
||||
if (Element* anonymousDivElement = GetAnonymousRootElementOfTextEditor()) {
|
||||
return anonymousDivElement;
|
||||
}
|
||||
}
|
||||
|
||||
if (nsPresContext* presContext = aPresShell->GetPresContext()) {
|
||||
if (HTMLEditor* htmlEditor = nsContentUtils::GetHTMLEditor(presContext)) {
|
||||
// When there is an HTMLEditor, selection root should be one of focused
|
||||
// editing host, <body> or root of the (sub)tree which this node belong.
|
||||
|
||||
// If this node is in design mode or this node is not editable, selection
|
||||
// root should be the <body> if this node is not in any subtrees and there
|
||||
// is a <body> or the root of the shadow DOM if this node is in a shadow
|
||||
// or the document element.
|
||||
// XXX If this node is not connected, it seems that this should return
|
||||
// nullptr because this node is not selectable.
|
||||
nsPresContext* presContext = aPresShell->GetPresContext();
|
||||
if (presContext) {
|
||||
HTMLEditor* htmlEditor = nsContentUtils::GetHTMLEditor(presContext);
|
||||
if (htmlEditor) {
|
||||
// This node is in HTML editor.
|
||||
if (!IsInComposedDoc() || IsInDesignMode() ||
|
||||
!HasFlag(NODE_IS_EDITABLE)) {
|
||||
Element* const bodyOrDocumentElement = [&]() -> Element* {
|
||||
if (Element* const bodyElement = OwnerDoc()->GetBodyElement()) {
|
||||
return bodyElement;
|
||||
}
|
||||
return OwnerDoc()->GetDocumentElement();
|
||||
}();
|
||||
NS_ENSURE_TRUE(bodyOrDocumentElement, nullptr);
|
||||
return nsContentUtils::IsInSameAnonymousTree(this,
|
||||
bodyOrDocumentElement)
|
||||
? bodyOrDocumentElement
|
||||
nsIContent* editorRoot = htmlEditor->GetRoot();
|
||||
NS_ENSURE_TRUE(editorRoot, nullptr);
|
||||
return nsContentUtils::IsInSameAnonymousTree(this, editorRoot)
|
||||
? editorRoot
|
||||
: GetRootForContentSubtree(AsContent());
|
||||
}
|
||||
// If this node is editable but not in the design mode, this is always an
|
||||
// editable node in an editing host of contenteditable. In this case,
|
||||
// let's use the editing host element as selection root.
|
||||
MOZ_ASSERT(IsEditable());
|
||||
MOZ_ASSERT(!IsInDesignMode());
|
||||
MOZ_ASSERT(IsContent());
|
||||
// If the document isn't editable but this is editable, this is in
|
||||
// contenteditable. Use the editing host element for selection root.
|
||||
return static_cast<nsIContent*>(this)->GetEditingHost();
|
||||
}
|
||||
}
|
||||
|
||||
if (!isContent) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
RefPtr<nsFrameSelection> fs = aPresShell->FrameSelection();
|
||||
nsCOMPtr<nsIContent> content = fs->GetLimiter();
|
||||
if (!content) {
|
||||
|
|
|
@ -213,10 +213,6 @@ void IMEContentObserver::OnIMEReceivedFocus() {
|
|||
bool IMEContentObserver::InitWithEditor(nsPresContext& aPresContext,
|
||||
Element* aElement,
|
||||
EditorBase& aEditorBase) {
|
||||
// mEditableNode is one of
|
||||
// - Anonymous <div> in <input> or <textarea>
|
||||
// - Editing host if it's not in the design mode
|
||||
// - Document if it's in the design mode
|
||||
mEditableNode = IMEStateManager::GetRootEditableNode(aPresContext, aElement);
|
||||
if (NS_WARN_IF(!mEditableNode)) {
|
||||
return false;
|
||||
|
@ -264,18 +260,11 @@ bool IMEContentObserver::InitWithEditor(nsPresContext& aPresContext,
|
|||
return false;
|
||||
}
|
||||
|
||||
// If an editing host has focus, mRootElement is it.
|
||||
// Otherwise, if we're in the design mode, mRootElement is the <body> if
|
||||
// there is and startContainer is not outside of the <body>. Otherwise, the
|
||||
// document element is used instead.
|
||||
nsCOMPtr<nsINode> startContainer = selRange->GetStartContainer();
|
||||
mRootElement = Element::FromNodeOrNull(
|
||||
startContainer->GetSelectionRootContent(presShell));
|
||||
} else {
|
||||
MOZ_ASSERT(!mIsTextControl);
|
||||
// If an editing host has focus, mRootElement is it.
|
||||
// Otherwise, if we're in the design mode, mRootElement is the <body> if
|
||||
// there is. Otherwise, the document element is used instead.
|
||||
nsCOMPtr<nsINode> editableNode = mEditableNode;
|
||||
mRootElement = Element::FromNodeOrNull(
|
||||
editableNode->GetSelectionRootContent(presShell));
|
||||
|
@ -336,10 +325,6 @@ void IMEContentObserver::ObserveEditableNode() {
|
|||
mEditorBase->SetIMEContentObserver(this);
|
||||
}
|
||||
|
||||
MOZ_LOG(sIMECOLog, LogLevel::Info,
|
||||
("0x%p ObserveEditableNode(), starting to observe 0x%p (%s)", this,
|
||||
mRootElement.get(), ToString(*mRootElement).c_str()));
|
||||
|
||||
mRootElement->AddMutationObserver(this);
|
||||
// If it's in a document (should be so), we can use document observer to
|
||||
// reduce redundant computation of text change offsets.
|
||||
|
@ -395,12 +380,6 @@ void IMEContentObserver::UnregisterObservers() {
|
|||
if (!mIsObserving) {
|
||||
return;
|
||||
}
|
||||
|
||||
MOZ_LOG(sIMECOLog, LogLevel::Info,
|
||||
("0x%p UnregisterObservers(), stop observing 0x%p (%s)", this,
|
||||
mRootElement.get(),
|
||||
mRootElement ? ToString(*mRootElement).c_str() : "nullptr"));
|
||||
|
||||
mIsObserving = false;
|
||||
|
||||
if (mEditorBase) {
|
||||
|
@ -1257,26 +1236,6 @@ void IMEContentObserver::ContentRemoved(nsIContent* aChild,
|
|||
MaybeNotifyIMEOfTextChange(data);
|
||||
}
|
||||
|
||||
MOZ_CAN_RUN_SCRIPT_BOUNDARY void IMEContentObserver::ParentChainChanged(
|
||||
nsIContent* aContent) {
|
||||
// When the observing element itself is directly removed from the document
|
||||
// without a focus move, i.e., it's the root of the removed document fragment
|
||||
// and the editor was handling the design mode, we have already stopped
|
||||
// observing the element because IMEStateManager::OnRemoveContent() should
|
||||
// have already been called for it and the instance which was observing the
|
||||
// node has already been destroyed. Therefore, this is called only when
|
||||
// this is observing the <body> in the design mode and it's disconnected from
|
||||
// the tree by an <html> element removal. Even in this case, IMEStateManager
|
||||
// never gets a focus change notification, but we need to notify IME of focus
|
||||
// change because we cannot interact with IME anymore due to no editable
|
||||
// content. Therefore, this method notifies IMEStateManager of the
|
||||
// disconnection of the observing node to emulate a blur from the editable
|
||||
// content.
|
||||
MOZ_ASSERT(mIsObserving);
|
||||
OwningNonNull<IMEContentObserver> observer(*this);
|
||||
IMEStateManager::OnParentChainChangedOfObservingElement(observer);
|
||||
}
|
||||
|
||||
void IMEContentObserver::OnTextControlValueChangedWhileNotObservable(
|
||||
const nsAString& aNewValue) {
|
||||
MOZ_ASSERT(mEditorBase);
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#include "nsCOMPtr.h"
|
||||
#include "nsCycleCollectionParticipant.h"
|
||||
#include "nsIDocShell.h" // XXX Why does only this need to be included here?
|
||||
#include "nsIMutationObserver.h"
|
||||
#include "nsIReflowObserver.h"
|
||||
#include "nsIScrollObserver.h"
|
||||
#include "nsIWidget.h"
|
||||
|
@ -60,7 +59,6 @@ class IMEContentObserver final : public nsStubMutationObserver,
|
|||
NS_DECL_NSIMUTATIONOBSERVER_CONTENTAPPENDED
|
||||
NS_DECL_NSIMUTATIONOBSERVER_CONTENTINSERTED
|
||||
NS_DECL_NSIMUTATIONOBSERVER_CONTENTREMOVED
|
||||
NS_DECL_NSIMUTATIONOBSERVER_PARENTCHAINCHANGED
|
||||
NS_DECL_NSIREFLOWOBSERVER
|
||||
|
||||
// nsIScrollObserver
|
||||
|
|
|
@ -415,7 +415,8 @@ nsresult IMEStateManager::OnRemoveContent(nsPresContext& aPresContext,
|
|||
|
||||
if (compositionInContent) {
|
||||
MOZ_LOG(sISMLog, LogLevel::Debug,
|
||||
(" OnRemoveContent(), composition is in the content"));
|
||||
(" OnRemoveContent(), "
|
||||
"composition is in the content"));
|
||||
|
||||
// Try resetting the native IME state. Be aware, typically, this method
|
||||
// is called during the content being removed. Then, the native
|
||||
|
@ -429,15 +430,8 @@ nsresult IMEStateManager::OnRemoveContent(nsPresContext& aPresContext,
|
|||
}
|
||||
}
|
||||
|
||||
if (!sFocusedPresContext ||
|
||||
// If focused element is a text control or an editing host, we need to
|
||||
// emulate "blur" on it when it's removed.
|
||||
(sFocusedElement && sFocusedElement != &aElement) ||
|
||||
// If it is (or was) in design mode, we need to emulate "blur" on the
|
||||
// document when the observing element (typically, <body>) is removed.
|
||||
(!sFocusedElement &&
|
||||
(!sActiveIMEContentObserver ||
|
||||
sActiveIMEContentObserver->GetObservingElement() != &aElement))) {
|
||||
if (!sFocusedPresContext || !sFocusedElement ||
|
||||
!sFocusedElement->IsInclusiveDescendantOf(&aElement)) {
|
||||
return NS_OK;
|
||||
}
|
||||
MOZ_ASSERT(sFocusedPresContext == &aPresContext);
|
||||
|
@ -469,48 +463,19 @@ nsresult IMEStateManager::OnRemoveContent(nsPresContext& aPresContext,
|
|||
SetIMEState(newState, &aPresContext, nullptr, textInputHandlingWidget, action,
|
||||
origin);
|
||||
if (sFocusedPresContext != &aPresContext || sFocusedElement) {
|
||||
return NS_OK; // Somebody already has focus, don't steal it.
|
||||
return NS_OK; // Some body must have set focus
|
||||
}
|
||||
|
||||
if (IsIMEObserverNeeded(newState)) {
|
||||
// Initializing IMEContentObserver instance requires Selection, but its
|
||||
// ranges have not been adjusted for this removal. Therefore, we need to
|
||||
// wait a moment.
|
||||
nsContentUtils::AddScriptRunner(NS_NewRunnableFunction(
|
||||
"IMEStateManager::RecreateIMEContentObserverWhenContentRemoved",
|
||||
[presContext = OwningNonNull{aPresContext}]() {
|
||||
MOZ_ASSERT(sFocusedPresContext == presContext);
|
||||
MOZ_ASSERT(!sFocusedElement);
|
||||
if (RefPtr<HTMLEditor> htmlEditor =
|
||||
nsContentUtils::GetHTMLEditor(presContext)) {
|
||||
CreateIMEContentObserver(*htmlEditor, nullptr);
|
||||
}
|
||||
}));
|
||||
if (RefPtr<HTMLEditor> htmlEditor =
|
||||
nsContentUtils::GetHTMLEditor(&aPresContext)) {
|
||||
CreateIMEContentObserver(*htmlEditor, nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
void IMEStateManager::OnParentChainChangedOfObservingElement(
|
||||
IMEContentObserver& aObserver) {
|
||||
if (!sFocusedPresContext || sActiveIMEContentObserver != &aObserver) {
|
||||
return;
|
||||
}
|
||||
RefPtr<nsPresContext> presContext = aObserver.GetPresContext();
|
||||
RefPtr<Element> element = aObserver.GetObservingElement();
|
||||
if (NS_WARN_IF(!presContext) || NS_WARN_IF(!element)) {
|
||||
return;
|
||||
}
|
||||
MOZ_LOG(sISMLog, LogLevel::Info,
|
||||
("OnParentChainChangedOfObservingElement(aObserver=0x%p), "
|
||||
"sFocusedPresContext=0x%p, sFocusedElement=0x%p, "
|
||||
"aObserver->GetPresContext()=0x%p, "
|
||||
"aObserver->GetObservingElement()=0x%p",
|
||||
&aObserver, sFocusedPresContext.get(), sFocusedElement.get(),
|
||||
presContext.get(), element.get()));
|
||||
OnRemoveContent(*presContext, *element);
|
||||
}
|
||||
|
||||
// static
|
||||
bool IMEStateManager::CanHandleWith(const nsPresContext* aPresContext) {
|
||||
return aPresContext && aPresContext->GetPresShell() &&
|
||||
|
|
|
@ -164,13 +164,6 @@ class IMEStateManager {
|
|||
nsPresContext& aPresContext);
|
||||
MOZ_CAN_RUN_SCRIPT static nsresult OnRemoveContent(
|
||||
nsPresContext& aPresContext, dom::Element& aElement);
|
||||
/**
|
||||
* Called when the parent chain of the observing element of IMEContentObserver
|
||||
* is changed.
|
||||
*/
|
||||
MOZ_CAN_RUN_SCRIPT static void OnParentChainChangedOfObservingElement(
|
||||
IMEContentObserver& aObserver);
|
||||
|
||||
/**
|
||||
* OnChangeFocus() should be called when focused content is changed or
|
||||
* IME enabled state is changed. If nobody has focus, set both aPresContext
|
||||
|
|
|
@ -1059,10 +1059,10 @@ TextComposition* TextCompositionArray::GetCompositionFor(
|
|||
TextComposition* TextCompositionArray::GetCompositionInContent(
|
||||
nsPresContext* aPresContext, nsIContent* aContent) {
|
||||
// There should be only one composition per content object.
|
||||
for (TextComposition* const composition : Reversed(*this)) {
|
||||
nsINode* node = composition->GetEventTargetNode();
|
||||
if (node && node->IsInclusiveFlatTreeDescendantOf(aContent)) {
|
||||
return composition;
|
||||
for (index_type i = Length(); i > 0; --i) {
|
||||
nsINode* node = ElementAt(i - 1)->GetEventTargetNode();
|
||||
if (node && node->IsInclusiveDescendantOf(aContent)) {
|
||||
return ElementAt(i - 1);
|
||||
}
|
||||
}
|
||||
return nullptr;
|
||||
|
|
|
@ -825,14 +825,8 @@ nsresult HTMLEditor::FocusedElementOrDocumentBecomesNotEditable(
|
|||
aHTMLEditor->mHasFocus = false;
|
||||
aHTMLEditor->mIsInDesignMode = false;
|
||||
|
||||
RefPtr<Element> focusedElement = nsFocusManager::GetFocusedElementStatic();
|
||||
if (focusedElement && !focusedElement->IsInComposedDoc()) {
|
||||
// nsFocusManager may keep storing the focused element even after
|
||||
// disconnected from the tree, but HTMLEditor cannot work with editable
|
||||
// nodes not in a composed document. Therefore, we should treat no
|
||||
// focused element in the case.
|
||||
focusedElement = nullptr;
|
||||
}
|
||||
const RefPtr<Element> focusedElement =
|
||||
nsFocusManager::GetFocusedElementStatic();
|
||||
TextControlElement* const focusedTextControlElement =
|
||||
TextControlElement::FromNodeOrNull(focusedElement);
|
||||
if ((focusedElement && focusedElement->IsEditable() &&
|
||||
|
@ -860,19 +854,14 @@ nsresult HTMLEditor::FocusedElementOrDocumentBecomesNotEditable(
|
|||
// If the element becomes not editable without focus change, IMEStateManager
|
||||
// does not have a chance to disable IME. Therefore, (even if we fail to
|
||||
// handle the emulated blur/focus above,) we should notify IMEStateManager of
|
||||
// the editing state change. Note that if the window of the HTMLEditor has
|
||||
// already lost focus, we don't need to do that and we should not touch the
|
||||
// other windows.
|
||||
if (aHTMLEditor->OurWindowHasFocus()) {
|
||||
if (RefPtr<nsPresContext> presContext = aHTMLEditor->GetPresContext()) {
|
||||
RefPtr<Element> focusedElement =
|
||||
nsFocusManager::GetFocusedElementStatic();
|
||||
MOZ_ASSERT_IF(focusedElement,
|
||||
focusedElement->GetPresContext(
|
||||
Element::PresContextFor::eForComposedDoc));
|
||||
IMEStateManager::MaybeOnEditableStateDisabled(*presContext,
|
||||
focusedElement);
|
||||
}
|
||||
// the editing state change.
|
||||
RefPtr<Element> focusedElement = nsFocusManager::GetFocusedElementStatic();
|
||||
RefPtr<nsPresContext> presContext =
|
||||
focusedElement ? focusedElement->GetPresContext(
|
||||
Element::PresContextFor::eForComposedDoc)
|
||||
: aDocument.GetPresContext();
|
||||
if (presContext) {
|
||||
IMEStateManager::MaybeOnEditableStateDisabled(*presContext, focusedElement);
|
||||
}
|
||||
|
||||
return rv;
|
||||
|
@ -889,13 +878,10 @@ nsresult HTMLEditor::OnBlur(const EventTarget* aEventTarget) {
|
|||
? "true"
|
||||
: "false")
|
||||
: "N/A"));
|
||||
const Element* eventTargetAsElement =
|
||||
Element::FromEventTargetOrNull(aEventTarget);
|
||||
|
||||
// If another element already has focus, we should not maintain the selection
|
||||
// because we may not have the rights doing it.
|
||||
const Element* focusedElement = nsFocusManager::GetFocusedElementStatic();
|
||||
if (focusedElement && focusedElement != eventTargetAsElement) {
|
||||
if (nsFocusManager::GetFocusedElementStatic()) {
|
||||
// XXX If we had focus and new focused element is a text control, we may
|
||||
// need to notify focus of its TextEditor...
|
||||
mIsInDesignMode = false;
|
||||
|
@ -906,8 +892,7 @@ nsresult HTMLEditor::OnBlur(const EventTarget* aEventTarget) {
|
|||
// If we're in the designMode and blur occurs, the target must be the document
|
||||
// node. If a blur event is fired and the target is an element, it must be
|
||||
// delayed blur event at initializing the `HTMLEditor`.
|
||||
if (mIsInDesignMode && eventTargetAsElement &&
|
||||
eventTargetAsElement->IsInComposedDoc()) {
|
||||
if (mIsInDesignMode && Element::FromEventTargetOrNull(aEventTarget)) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,37 +0,0 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
document.addEventListener("DOMContentLoaded", async () => {
|
||||
const q = document.querySelector("q");
|
||||
const data = document.querySelector("data");
|
||||
const meter = document.querySelector("meter");
|
||||
const button = document.querySelector("button");
|
||||
button.addEventListener(
|
||||
"focusout",
|
||||
() => document.createElement("a").append(q)
|
||||
);
|
||||
const promiseButtonFocus = new Promise(resolve => {
|
||||
button.addEventListener("button", resolve, {once: true});
|
||||
});
|
||||
button.focus();
|
||||
promiseButtonFocus;
|
||||
document.designMode = "on";
|
||||
q.insertBefore(document.body, data);
|
||||
meter.insertBefore(data, meter.childNodes[0]);
|
||||
}, {once: true});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<q>
|
||||
<data>
|
||||
</q>
|
||||
<dialog>
|
||||
<meter>
|
||||
</dialog>
|
||||
<button></button>
|
||||
</body>
|
||||
</html>
|
|
@ -21,9 +21,6 @@ skip-if = ["os != 'win'"]
|
|||
|
||||
["browser_test_fullscreen_size.js"]
|
||||
|
||||
["browser_test_ime_state_after_body_removed_and_reconnected_in_designMode.js"]
|
||||
support-files = [ "../file_ime_state_test_helper.js" ]
|
||||
|
||||
["browser_test_ime_state_in_contenteditable_on_focus_move_in_remote_content.js"]
|
||||
support-files = [
|
||||
"file_ime_state_tests.html",
|
||||
|
|
|
@ -1,168 +0,0 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
"use strict";
|
||||
|
||||
/* import-globals-from ../file_ime_state_test_helper.js */
|
||||
|
||||
Services.scriptloader.loadSubScript(
|
||||
"chrome://mochitests/content/browser/widget/tests/browser/file_ime_state_test_helper.js",
|
||||
this
|
||||
);
|
||||
|
||||
add_task(async function test_replace_body_in_designMode() {
|
||||
await BrowserTestUtils.withNewTab(
|
||||
"data:text/html,<html><body><br></body></html>",
|
||||
async function (browser) {
|
||||
const tipWrapper = new TIPWrapper(window);
|
||||
ok(
|
||||
tipWrapper.isAvailable(),
|
||||
"test_replace_body_in_designMode: TextInputProcessor should've been initialized"
|
||||
);
|
||||
|
||||
function waitFor(aWaitingNotification) {
|
||||
return new Promise(resolve => {
|
||||
tipWrapper.onIMEFocusBlur = aNotification => {
|
||||
if (aNotification != aWaitingNotification) {
|
||||
return;
|
||||
}
|
||||
tipWrapper.onIMEFocusBlur = null;
|
||||
resolve();
|
||||
};
|
||||
});
|
||||
}
|
||||
const waitForInitialFocus = waitFor("notify-focus");
|
||||
await SpecialPowers.spawn(browser, [], () => {
|
||||
content.document.designMode = "on";
|
||||
content.document.body.focus();
|
||||
});
|
||||
info("test_replace_body_in_designMode: Waiting for initial IME focus...");
|
||||
await waitForInitialFocus;
|
||||
Assert.equal(
|
||||
window.windowUtils.IMEStatus,
|
||||
Ci.nsIDOMWindowUtils.IME_STATUS_ENABLED,
|
||||
"test_replace_body_in_designMode: IME should be enabled when the document becomes editable"
|
||||
);
|
||||
|
||||
tipWrapper.clearFocusBlurNotifications();
|
||||
const waitForRefocusAfterBodyRemoval = waitFor("notify-focus");
|
||||
await SpecialPowers.spawn(browser, [], () => {
|
||||
content.wrappedJSObject.body = content.document.body;
|
||||
content.document.body.remove();
|
||||
});
|
||||
info(
|
||||
"test_replace_body_in_designMode: Waiting for IME refocus after the <body> is removed..."
|
||||
);
|
||||
await waitForRefocusAfterBodyRemoval;
|
||||
Assert.equal(
|
||||
window.windowUtils.IMEStatus,
|
||||
Ci.nsIDOMWindowUtils.IME_STATUS_ENABLED,
|
||||
"test_replace_body_in_designMode: IME should be enabled after the <body> is removed"
|
||||
);
|
||||
|
||||
await SpecialPowers.spawn(browser, [], () => {
|
||||
content.document.documentElement.appendChild(
|
||||
content.wrappedJSObject.body
|
||||
);
|
||||
});
|
||||
tipWrapper.clearFocusBlurNotifications();
|
||||
await new Promise(resolve => {
|
||||
window.requestAnimationFrame(() =>
|
||||
window.requestAnimationFrame(resolve)
|
||||
);
|
||||
});
|
||||
// FIXME: IME should be refocused when new <body> is inserted because
|
||||
// HTMLEditor::GetRoot() returns the reconnected <body> now, but
|
||||
// IMEContentObserver keeps observing the <html>.
|
||||
Assert.equal(
|
||||
tipWrapper.numberOfBlurNotifications +
|
||||
tipWrapper.numberOfFocusNotifications,
|
||||
0,
|
||||
"test_replace_body_in_designMode: IME should not be refocused when the <body> is reconnected"
|
||||
);
|
||||
Assert.equal(
|
||||
window.windowUtils.IMEStatus,
|
||||
Ci.nsIDOMWindowUtils.IME_STATUS_ENABLED,
|
||||
"test_replace_body_in_designMode: IME should be enabled after the <body> is reconnected"
|
||||
);
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
add_task(async function test_replace_document_element_in_designMode() {
|
||||
await BrowserTestUtils.withNewTab(
|
||||
"data:text/html,<html><body><br></body></html>",
|
||||
async function (browser) {
|
||||
const tipWrapper = new TIPWrapper(window);
|
||||
ok(
|
||||
tipWrapper.isAvailable(),
|
||||
"test_replace_document_element_in_designMode: TextInputProcessor should've been initialized"
|
||||
);
|
||||
|
||||
function waitFor(aWaitingNotification) {
|
||||
return new Promise(resolve => {
|
||||
tipWrapper.onIMEFocusBlur = aNotification => {
|
||||
if (aNotification != aWaitingNotification) {
|
||||
return;
|
||||
}
|
||||
tipWrapper.onIMEFocusBlur = null;
|
||||
resolve();
|
||||
};
|
||||
});
|
||||
}
|
||||
const waitForInitialFocus = waitFor("notify-focus");
|
||||
await SpecialPowers.spawn(browser, [], () => {
|
||||
content.document.designMode = "on";
|
||||
content.document.body.focus();
|
||||
});
|
||||
info(
|
||||
"test_replace_document_element_in_designMode: Waiting for initial IME focus..."
|
||||
);
|
||||
await waitForInitialFocus;
|
||||
Assert.equal(
|
||||
window.windowUtils.IMEStatus,
|
||||
Ci.nsIDOMWindowUtils.IME_STATUS_ENABLED,
|
||||
"test_replace_document_element_in_designMode: IME should be enabled when the document becomes editable"
|
||||
);
|
||||
|
||||
tipWrapper.clearFocusBlurNotifications();
|
||||
const waitForRefocusAfterDocumentElementRemoval = waitFor("notify-blur");
|
||||
await SpecialPowers.spawn(browser, [], () => {
|
||||
content.wrappedJSObject.documentElement =
|
||||
content.document.documentElement;
|
||||
content.document.documentElement.remove();
|
||||
});
|
||||
info(
|
||||
"test_replace_document_element_in_designMode: Waiting for IME blur after the <html> is removed..."
|
||||
);
|
||||
await waitForRefocusAfterDocumentElementRemoval;
|
||||
Assert.equal(
|
||||
window.windowUtils.IMEStatus,
|
||||
Ci.nsIDOMWindowUtils.IME_STATUS_ENABLED,
|
||||
"test_replace_document_element_in_designMode: IME should be enabled after the <html> is removed"
|
||||
);
|
||||
|
||||
await SpecialPowers.spawn(browser, [], () => {
|
||||
content.document.appendChild(content.wrappedJSObject.documentElement);
|
||||
});
|
||||
tipWrapper.clearFocusBlurNotifications();
|
||||
await new Promise(resolve => {
|
||||
window.requestAnimationFrame(() =>
|
||||
window.requestAnimationFrame(resolve)
|
||||
);
|
||||
});
|
||||
// FIXME: IME should be focused when new root element is inserted.
|
||||
Assert.equal(
|
||||
tipWrapper.numberOfBlurNotifications +
|
||||
tipWrapper.numberOfFocusNotifications,
|
||||
0,
|
||||
"test_replace_document_element_in_designMode: IME should not be refocused when the <html> is reconnected"
|
||||
);
|
||||
Assert.equal(
|
||||
window.windowUtils.IMEStatus,
|
||||
Ci.nsIDOMWindowUtils.IME_STATUS_ENABLED,
|
||||
"test_replace_document_element_in_designMode: IME should be enabled after the <html> is reconnected"
|
||||
);
|
||||
}
|
||||
);
|
||||
});
|
Загрузка…
Ссылка в новой задаче