/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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 http://mozilla.org/MPL/2.0/. */
if (event->HasMouseEventMessage()) {
WidgetMouseEvent* mouseEvent = event->AsMouseEvent();
if (mouseEvent->IsLeftClickEvent()) {
RefPtr<HTMLDetailsElement> details = GetDetails();
MOZ_ASSERT(details, "Expected to find details since this is the main summary!");
// When dispatching a synthesized mouse click event to a details element // with 'display: none', both Chrome and Safari do not toggle the 'open' // attribute. We had tried to be compatible with this behavior, but found // more inconsistency in test cases in bug 1245424. So we stop doing that.
details->ToggleOpen();
aVisitor.mEventStatus = nsEventStatus_eConsumeNoDefault; return NS_OK;
}
} // event->HasMouseEventMessage()
if (event->HasKeyEventMessage() && event->IsTrusted()) {
HandleKeyboardActivation(aVisitor);
} return rv;
}
if (disallowOverridingFocusability || !IsMainSummary()) { return disallowOverridingFocusability;
}
// The main summary element is focusable.
*aIsFocusable = true;
// Give a chance to allow the subclass to override aIsFocusable. returnfalse;
}
int32_t HTMLSummaryElement::TabIndexDefault() { // Make the main summary be able to navigate via tab, and be focusable. // See nsGenericHTMLElement::IsHTMLFocusable(). return IsMainSummary() ? 0 : nsGenericHTMLElement::TabIndexDefault();
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.