mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
e283739a59
- Bug 895274 part.2 Define event messages as anonymous enum with EventMessageList.h r=smaug (44a28d5da) - Bug 895274 part.1 Rename WidgetEvent::message to WidgetEvent::mMessage r=smaug (1a1651a54) - Bug 895274 part.170 Rename NS_ANIMATION_EVENT_START to eAnimationEventFirst r=smaug (e3bedfd02) - some cleanup (c496de395) - Bug 1186582 - AskPermission should check for prompt exceptions; r=fabrice (e7fc39d0a) - Bug 1170314 - Make console.timeStamp to add also Gecko profiler markers if Gecko profiler is active, r=baku,benwa (7e78b02c1) - Bug 1178172 - Fix all compile errors in dom/base on non-unified build. r=baku (ffc87d5ae) - namespace (93bb2e778) - Bug 1001158 - Handle an invalid distribution.ini gracefully, r=gijs (260ab12f2) - Bug 1157760: Remove incorrect MOZ_ASSERT in nsMessageManagerSH<Super>::Enumerate. r=bz (e1d86db8a) - Bug 1148694 patch 1 - Stop creating a CharsetRule object when parsing @charset rules. r=dbaron (5d3b4a237) - Bug 1148694 patch 2 - Remove interface and implementation of CSSCharsetRule. r=dbaron (e687d6a51) - Bug 1148694 patch 3 - remove tests affected by removal of CSSCharsetRule. r=dbaron, r=khuey (84e04ec3c) - Bug 958778 - De-holder nsIXPConnect::GetWrappedNativePrototype(). r=gabor (e862b0197) - non-EME part of Bug 1160445 - Add detailed logging for EME promise failures (90c5ae1a1) - Bug 1191305 - Alphabetize some includes; r=froydnj (6bc41455c) - Bug 1188640 - Add ChromeOnly MutationObserver.mergeAttributeRecords to speed up devtools, r=bz,bgrins (5f07c777f) - namespace (0e90aac16)
168 lines
4.7 KiB
C++
168 lines
4.7 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#include "mozilla/dom/HTMLSummaryElement.h"
|
|
#include "mozilla/dom/HTMLSummaryElementBinding.h"
|
|
|
|
#include "mozilla/dom/HTMLDetailsElement.h"
|
|
#include "mozilla/dom/HTMLDetailsElementBinding.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
#include "nsPresContext.h"
|
|
#include "nsIDOMEvent.h"
|
|
#include "mozilla/ContentEvents.h"
|
|
#include "mozilla/EventDispatcher.h"
|
|
#include "mozilla/EventStateManager.h"
|
|
#include "mozilla/EventStates.h"
|
|
#include "mozilla/MouseEvents.h"
|
|
#include "mozilla/TextEvents.h"
|
|
#include "nsPresState.h"
|
|
#include "nsFocusManager.h"
|
|
|
|
NS_IMPL_NS_NEW_HTML_ELEMENT(Summary)
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
HTMLSummaryElement::HTMLSummaryElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
|
: nsGenericHTMLElement(aNodeInfo)
|
|
{
|
|
}
|
|
|
|
HTMLSummaryElement::~HTMLSummaryElement()
|
|
{
|
|
}
|
|
|
|
NS_IMPL_ELEMENT_CLONE(HTMLSummaryElement)
|
|
|
|
nsresult
|
|
HTMLSummaryElement::PostHandleEvent(EventChainPostVisitor& aVisitor)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
if (!aVisitor.mPresContext) {
|
|
return rv;
|
|
}
|
|
|
|
if (aVisitor.mEventStatus == nsEventStatus_eConsumeNoDefault) {
|
|
return rv;
|
|
}
|
|
|
|
if (!IsMainSummary()) {
|
|
return rv;
|
|
}
|
|
|
|
WidgetEvent* const event = aVisitor.mEvent;
|
|
|
|
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()) {
|
|
WidgetKeyboardEvent* keyboardEvent = event->AsKeyboardEvent();
|
|
bool dispatchClick = false;
|
|
|
|
switch (event->mMessage) {
|
|
case NS_KEY_PRESS:
|
|
if (keyboardEvent->charCode == nsIDOMKeyEvent::DOM_VK_SPACE) {
|
|
// Consume 'space' key to prevent scrolling the page down.
|
|
aVisitor.mEventStatus = nsEventStatus_eConsumeNoDefault;
|
|
}
|
|
|
|
dispatchClick = keyboardEvent->keyCode == nsIDOMKeyEvent::DOM_VK_RETURN;
|
|
break;
|
|
|
|
case NS_KEY_UP:
|
|
dispatchClick = keyboardEvent->keyCode == nsIDOMKeyEvent::DOM_VK_SPACE;
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (dispatchClick) {
|
|
rv = DispatchSimulatedClick(this, event->mFlags.mIsTrusted,
|
|
aVisitor.mPresContext);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
aVisitor.mEventStatus = nsEventStatus_eConsumeNoDefault;
|
|
}
|
|
}
|
|
} // event->HasKeyEventMessage()
|
|
|
|
return rv;
|
|
}
|
|
|
|
bool
|
|
HTMLSummaryElement::IsHTMLFocusable(bool aWithMouse, bool* aIsFocusable,
|
|
int32_t* aTabIndex)
|
|
{
|
|
bool disallowOverridingFocusability =
|
|
nsGenericHTMLElement::IsHTMLFocusable(aWithMouse, aIsFocusable, aTabIndex);
|
|
|
|
if (disallowOverridingFocusability || !IsMainSummary()) {
|
|
return disallowOverridingFocusability;
|
|
}
|
|
|
|
#ifdef XP_MACOSX
|
|
// The parent does not have strong opinion about the focusability of this main
|
|
// summary element, but we'd like to override it when mouse clicking on Mac OS
|
|
// like other form elements.
|
|
*aIsFocusable = !aWithMouse || nsFocusManager::sMouseFocusesFormControl;
|
|
#else
|
|
// The main summary element is focusable on other platforms.
|
|
*aIsFocusable = true;
|
|
#endif
|
|
|
|
// Give a chance to allow the subclass to override aIsFocusable.
|
|
return false;
|
|
}
|
|
|
|
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();
|
|
}
|
|
|
|
bool
|
|
HTMLSummaryElement::IsMainSummary() const
|
|
{
|
|
HTMLDetailsElement* details = GetDetails();
|
|
if (!details) {
|
|
return false;
|
|
}
|
|
|
|
return details->GetFirstSummary() == this || IsRootOfNativeAnonymousSubtree();
|
|
}
|
|
|
|
HTMLDetailsElement*
|
|
HTMLSummaryElement::GetDetails() const
|
|
{
|
|
return HTMLDetailsElement::FromContentOrNull(GetParent());
|
|
}
|
|
|
|
JSObject*
|
|
HTMLSummaryElement::WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return HTMLSummaryElementBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|