2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-09-04 14:30:36 +04:00
|
|
|
/* 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 "nsNumberControlFrame.h"
|
|
|
|
|
2011-06-21 18:13:12 +04:00
|
|
|
#include "HTMLInputElement.h"
|
2014-01-23 19:43:12 +04:00
|
|
|
#include "ICUUtils.h"
|
2011-06-21 18:13:12 +04:00
|
|
|
#include "nsIFocusManager.h"
|
2013-09-04 14:30:36 +04:00
|
|
|
#include "nsIPresShell.h"
|
2011-06-21 18:13:12 +04:00
|
|
|
#include "nsFocusManager.h"
|
2013-09-04 14:30:36 +04:00
|
|
|
#include "nsFontMetrics.h"
|
2017-09-27 15:12:00 +03:00
|
|
|
#include "nsCheckboxRadioFrame.h"
|
2013-09-04 14:30:36 +04:00
|
|
|
#include "nsGkAtoms.h"
|
2014-02-28 03:04:46 +04:00
|
|
|
#include "nsNameSpaceManager.h"
|
2013-12-05 20:20:34 +04:00
|
|
|
#include "nsThemeConstants.h"
|
2013-12-01 17:49:10 +04:00
|
|
|
#include "mozilla/BasicEvents.h"
|
2014-04-03 08:18:36 +04:00
|
|
|
#include "mozilla/EventStates.h"
|
2013-09-04 14:30:36 +04:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
2016-02-17 23:37:00 +03:00
|
|
|
#include "nsCSSPseudoElements.h"
|
2018-02-01 07:04:04 +03:00
|
|
|
#ifdef MOZ_OLD_STYLE
|
2013-09-04 14:30:36 +04:00
|
|
|
#include "nsStyleSet.h"
|
2018-02-01 07:04:04 +03:00
|
|
|
#endif
|
2016-02-24 10:01:11 +03:00
|
|
|
#include "mozilla/StyleSetHandle.h"
|
|
|
|
#include "mozilla/StyleSetHandleInlines.h"
|
2014-08-01 04:25:43 +04:00
|
|
|
#include "nsThreadUtils.h"
|
2014-10-01 13:26:00 +04:00
|
|
|
#include "mozilla/FloatingPoint.h"
|
2018-02-09 19:17:10 +03:00
|
|
|
#include "mozilla/dom/MutationEventBinding.h"
|
2013-09-04 14:30:36 +04:00
|
|
|
|
2013-12-11 07:19:26 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
#include "mozilla/a11y/AccTypes.h"
|
|
|
|
#endif
|
|
|
|
|
2013-09-04 14:30:36 +04:00
|
|
|
using namespace mozilla;
|
2011-06-21 18:13:12 +04:00
|
|
|
using namespace mozilla::dom;
|
2013-09-04 14:30:36 +04:00
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewNumberControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsNumberControlFrame(aContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsNumberControlFrame)
|
|
|
|
|
|
|
|
NS_QUERYFRAME_HEAD(nsNumberControlFrame)
|
2011-06-21 18:13:12 +04:00
|
|
|
NS_QUERYFRAME_ENTRY(nsNumberControlFrame)
|
2013-09-04 14:30:36 +04:00
|
|
|
NS_QUERYFRAME_ENTRY(nsIAnonymousContentCreator)
|
2014-05-06 02:21:00 +04:00
|
|
|
NS_QUERYFRAME_ENTRY(nsIFormControlFrame)
|
2013-09-04 14:30:36 +04:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
|
|
|
|
|
|
|
nsNumberControlFrame::nsNumberControlFrame(nsStyleContext* aContext)
|
2017-05-26 13:11:11 +03:00
|
|
|
: nsContainerFrame(aContext, kClassID)
|
2013-11-22 17:24:53 +04:00
|
|
|
, mHandlingInputEvent(false)
|
2013-09-04 14:30:36 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-11-07 03:20:33 +03:00
|
|
|
nsNumberControlFrame::DestroyFrom(nsIFrame* aDestructRoot, PostDestroyData& aPostDestroyData)
|
2013-09-04 14:30:36 +04:00
|
|
|
{
|
|
|
|
NS_ASSERTION(!GetPrevContinuation() && !GetNextContinuation(),
|
|
|
|
"nsNumberControlFrame should not have continuations; if it does we "
|
|
|
|
"need to call RegUnregAccessKey only for the first");
|
2017-09-27 15:12:00 +03:00
|
|
|
nsCheckboxRadioFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), false);
|
2017-11-07 03:20:33 +03:00
|
|
|
aPostDestroyData.AddAnonymousContent(mOuterWrapper.forget());
|
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot, aPostDestroyData);
|
2013-09-04 14:30:36 +04:00
|
|
|
}
|
|
|
|
|
2014-02-12 06:54:14 +04:00
|
|
|
nscoord
|
2017-06-09 22:14:53 +03:00
|
|
|
nsNumberControlFrame::GetMinISize(gfxContext* aRenderingContext)
|
2014-02-12 06:54:14 +04:00
|
|
|
{
|
|
|
|
nscoord result;
|
|
|
|
DISPLAY_MIN_WIDTH(this, result);
|
|
|
|
|
|
|
|
nsIFrame* kid = mFrames.FirstChild();
|
|
|
|
if (kid) { // display:none?
|
|
|
|
result = nsLayoutUtils::IntrinsicForContainer(aRenderingContext,
|
|
|
|
kid,
|
2014-07-24 21:03:26 +04:00
|
|
|
nsLayoutUtils::MIN_ISIZE);
|
2014-02-12 06:54:14 +04:00
|
|
|
} else {
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord
|
2017-06-09 22:14:53 +03:00
|
|
|
nsNumberControlFrame::GetPrefISize(gfxContext* aRenderingContext)
|
2014-02-12 06:54:14 +04:00
|
|
|
{
|
|
|
|
nscoord result;
|
|
|
|
DISPLAY_PREF_WIDTH(this, result);
|
|
|
|
|
|
|
|
nsIFrame* kid = mFrames.FirstChild();
|
|
|
|
if (kid) { // display:none?
|
|
|
|
result = nsLayoutUtils::IntrinsicForContainer(aRenderingContext,
|
|
|
|
kid,
|
2014-07-24 21:03:26 +04:00
|
|
|
nsLayoutUtils::PREF_ISIZE);
|
2014-02-12 06:54:14 +04:00
|
|
|
} else {
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-05-13 04:47:52 +04:00
|
|
|
void
|
2013-09-04 14:30:36 +04:00
|
|
|
nsNumberControlFrame::Reflow(nsPresContext* aPresContext,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2013-09-04 14:30:36 +04:00
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
2015-03-30 01:38:40 +03:00
|
|
|
MarkInReflow();
|
2013-09-04 14:30:36 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsNumberControlFrame");
|
2016-07-21 13:36:39 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowInput, aDesiredSize, aStatus);
|
2017-09-13 13:00:25 +03:00
|
|
|
MOZ_ASSERT(aStatus.IsEmpty(), "Caller should pass a fresh reflow status!");
|
2013-09-04 14:30:36 +04:00
|
|
|
|
|
|
|
NS_ASSERTION(mOuterWrapper, "Outer wrapper div must exist!");
|
|
|
|
|
|
|
|
NS_ASSERTION(!GetPrevContinuation() && !GetNextContinuation(),
|
|
|
|
"nsNumberControlFrame should not have continuations; if it does we "
|
|
|
|
"need to call RegUnregAccessKey only for the first");
|
|
|
|
|
|
|
|
NS_ASSERTION(!mFrames.FirstChild() ||
|
|
|
|
!mFrames.FirstChild()->GetNextSibling(),
|
|
|
|
"We expect at most one direct child frame");
|
|
|
|
|
|
|
|
if (mState & NS_FRAME_FIRST_REFLOW) {
|
2017-09-27 15:12:00 +03:00
|
|
|
nsCheckboxRadioFrame::RegUnRegAccessKey(this, true);
|
2013-09-04 14:30:36 +04:00
|
|
|
}
|
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
const WritingMode myWM = aReflowInput.GetWritingMode();
|
2015-06-13 00:19:43 +03:00
|
|
|
|
|
|
|
// The ISize of our content box, which is the available ISize
|
2014-02-05 04:42:57 +04:00
|
|
|
// for our anonymous content:
|
2016-07-21 13:36:39 +03:00
|
|
|
const nscoord contentBoxISize = aReflowInput.ComputedISize();
|
|
|
|
nscoord contentBoxBSize = aReflowInput.ComputedBSize();
|
2014-02-05 04:42:57 +04:00
|
|
|
|
2015-06-13 00:20:01 +03:00
|
|
|
// Figure out our border-box sizes as well (by adding borderPadding to
|
|
|
|
// content-box sizes):
|
|
|
|
const nscoord borderBoxISize = contentBoxISize +
|
2016-07-21 13:36:39 +03:00
|
|
|
aReflowInput.ComputedLogicalBorderPadding().IStartEnd(myWM);
|
2015-06-13 00:20:01 +03:00
|
|
|
|
|
|
|
nscoord borderBoxBSize;
|
|
|
|
if (contentBoxBSize != NS_INTRINSICSIZE) {
|
|
|
|
borderBoxBSize = contentBoxBSize +
|
2016-07-21 13:36:39 +03:00
|
|
|
aReflowInput.ComputedLogicalBorderPadding().BStartEnd(myWM);
|
2015-06-13 00:20:01 +03:00
|
|
|
} // else, we'll figure out borderBoxBSize after we resolve contentBoxBSize.
|
|
|
|
|
2013-09-04 14:30:36 +04:00
|
|
|
nsIFrame* outerWrapperFrame = mOuterWrapper->GetPrimaryFrame();
|
2014-02-05 04:42:57 +04:00
|
|
|
|
|
|
|
if (!outerWrapperFrame) { // display:none?
|
2015-06-13 00:19:43 +03:00
|
|
|
if (contentBoxBSize == NS_INTRINSICSIZE) {
|
|
|
|
contentBoxBSize = 0;
|
2015-06-13 00:20:01 +03:00
|
|
|
borderBoxBSize =
|
2016-07-21 13:36:39 +03:00
|
|
|
aReflowInput.ComputedLogicalBorderPadding().BStartEnd(myWM);
|
2014-02-05 04:42:57 +04:00
|
|
|
}
|
|
|
|
} else {
|
2013-09-04 14:30:36 +04:00
|
|
|
NS_ASSERTION(outerWrapperFrame == mFrames.FirstChild(), "huh?");
|
2014-02-05 04:42:57 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowOutput wrappersDesiredSize(aReflowInput);
|
2014-02-05 04:42:57 +04:00
|
|
|
|
2015-06-13 00:19:42 +03:00
|
|
|
WritingMode wrapperWM = outerWrapperFrame->GetWritingMode();
|
2016-07-21 13:36:39 +03:00
|
|
|
LogicalSize availSize = aReflowInput.ComputedSize(wrapperWM);
|
2015-06-13 00:19:42 +03:00
|
|
|
availSize.BSize(wrapperWM) = NS_UNCONSTRAINEDSIZE;
|
2014-07-24 12:28:46 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowInput wrapperReflowInput(aPresContext, aReflowInput,
|
2014-07-24 12:28:46 +04:00
|
|
|
outerWrapperFrame, availSize);
|
2014-02-05 04:42:57 +04:00
|
|
|
|
2015-06-13 00:20:01 +03:00
|
|
|
// Convert wrapper margin into my own writing-mode (in case it differs):
|
|
|
|
LogicalMargin wrapperMargin =
|
2016-07-21 13:36:39 +03:00
|
|
|
wrapperReflowInput.ComputedLogicalMargin().ConvertTo(myWM, wrapperWM);
|
2015-06-13 00:20:01 +03:00
|
|
|
|
|
|
|
// offsets of wrapper frame within this frame:
|
|
|
|
LogicalPoint
|
|
|
|
wrapperOffset(myWM,
|
2016-07-21 13:36:39 +03:00
|
|
|
aReflowInput.ComputedLogicalBorderPadding().IStart(myWM) +
|
2015-06-13 00:20:01 +03:00
|
|
|
wrapperMargin.IStart(myWM),
|
2016-07-21 13:36:39 +03:00
|
|
|
aReflowInput.ComputedLogicalBorderPadding().BStart(myWM) +
|
2015-06-13 00:20:01 +03:00
|
|
|
wrapperMargin.BStart(myWM));
|
2014-02-05 04:42:57 +04:00
|
|
|
|
|
|
|
nsReflowStatus childStatus;
|
2015-07-16 12:07:57 +03:00
|
|
|
// We initially reflow the child with a dummy containerSize; positioning
|
|
|
|
// will be fixed later.
|
|
|
|
const nsSize dummyContainerSize;
|
2014-05-13 04:47:52 +04:00
|
|
|
ReflowChild(outerWrapperFrame, aPresContext, wrappersDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
wrapperReflowInput, myWM, wrapperOffset, dummyContainerSize, 0,
|
2015-07-16 12:07:57 +03:00
|
|
|
childStatus);
|
2017-02-11 17:38:48 +03:00
|
|
|
MOZ_ASSERT(childStatus.IsFullyComplete(),
|
2015-06-13 00:19:43 +03:00
|
|
|
"We gave our child unconstrained available block-size, "
|
|
|
|
"so it should be complete");
|
2014-02-05 04:42:57 +04:00
|
|
|
|
2015-06-13 00:19:43 +03:00
|
|
|
nscoord wrappersMarginBoxBSize =
|
|
|
|
wrappersDesiredSize.BSize(myWM) + wrapperMargin.BStartEnd(myWM);
|
2014-02-05 04:42:57 +04:00
|
|
|
|
2015-06-13 00:19:43 +03:00
|
|
|
if (contentBoxBSize == NS_INTRINSICSIZE) {
|
2014-02-05 04:42:57 +04:00
|
|
|
// We are intrinsically sized -- we should shrinkwrap the outer wrapper's
|
2015-06-13 00:19:43 +03:00
|
|
|
// block-size:
|
|
|
|
contentBoxBSize = wrappersMarginBoxBSize;
|
2014-02-05 04:42:57 +04:00
|
|
|
|
2015-06-13 00:19:43 +03:00
|
|
|
// Make sure we obey min/max-bsize in the case when we're doing intrinsic
|
2014-02-05 04:42:57 +04:00
|
|
|
// sizing (we get it for free when we have a non-intrinsic
|
2016-07-21 13:36:39 +03:00
|
|
|
// aReflowInput.ComputedBSize()). Note that we do this before
|
2015-06-13 00:19:43 +03:00
|
|
|
// adjusting for borderpadding, since ComputedMaxBSize and
|
|
|
|
// ComputedMinBSize are content heights.
|
|
|
|
contentBoxBSize =
|
|
|
|
NS_CSS_MINMAX(contentBoxBSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
aReflowInput.ComputedMinBSize(),
|
|
|
|
aReflowInput.ComputedMaxBSize());
|
2015-06-13 00:20:01 +03:00
|
|
|
|
|
|
|
borderBoxBSize = contentBoxBSize +
|
2016-07-21 13:36:39 +03:00
|
|
|
aReflowInput.ComputedLogicalBorderPadding().BStartEnd(myWM);
|
2014-02-05 04:42:57 +04:00
|
|
|
}
|
|
|
|
|
2015-06-13 00:19:43 +03:00
|
|
|
// Center child in block axis
|
|
|
|
nscoord extraSpace = contentBoxBSize - wrappersMarginBoxBSize;
|
2015-06-13 00:20:01 +03:00
|
|
|
wrapperOffset.B(myWM) += std::max(0, extraSpace / 2);
|
|
|
|
|
|
|
|
// Needed in FinishReflowChild, for logical-to-physical conversion:
|
2015-07-16 12:07:57 +03:00
|
|
|
nsSize borderBoxSize = LogicalSize(myWM, borderBoxISize, borderBoxBSize).
|
|
|
|
GetPhysicalSize(myWM);
|
2014-02-05 04:42:57 +04:00
|
|
|
|
|
|
|
// Place the child
|
2014-05-13 04:47:52 +04:00
|
|
|
FinishReflowChild(outerWrapperFrame, aPresContext, wrappersDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
&wrapperReflowInput, myWM, wrapperOffset,
|
2015-07-16 12:07:57 +03:00
|
|
|
borderBoxSize, 0);
|
2013-09-04 14:30:36 +04:00
|
|
|
|
2015-07-16 12:07:57 +03:00
|
|
|
nsSize contentBoxSize =
|
|
|
|
LogicalSize(myWM, contentBoxISize, contentBoxBSize).
|
|
|
|
GetPhysicalSize(myWM);
|
2014-06-11 13:45:31 +04:00
|
|
|
aDesiredSize.SetBlockStartAscent(
|
|
|
|
wrappersDesiredSize.BlockStartAscent() +
|
2016-07-21 13:36:39 +03:00
|
|
|
outerWrapperFrame->BStart(aReflowInput.GetWritingMode(),
|
2015-07-16 12:07:57 +03:00
|
|
|
contentBoxSize));
|
2013-09-04 14:30:36 +04:00
|
|
|
}
|
2014-02-05 04:42:57 +04:00
|
|
|
|
2015-06-13 00:20:01 +03:00
|
|
|
LogicalSize logicalDesiredSize(myWM, borderBoxISize, borderBoxBSize);
|
2015-06-13 00:19:43 +03:00
|
|
|
aDesiredSize.SetSize(myWM, logicalDesiredSize);
|
2013-09-04 14:30:36 +04:00
|
|
|
|
2014-02-05 04:42:57 +04:00
|
|
|
aDesiredSize.SetOverflowAreasToDesiredBounds();
|
|
|
|
|
2013-09-04 14:30:36 +04:00
|
|
|
if (outerWrapperFrame) {
|
2014-02-05 04:42:57 +04:00
|
|
|
ConsiderChildOverflow(aDesiredSize.mOverflowAreas, outerWrapperFrame);
|
2013-09-04 14:30:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
|
|
|
|
2017-09-13 13:00:25 +03:00
|
|
|
MOZ_ASSERT(aStatus.IsEmpty(), "This type of frame can't be split.");
|
2013-09-04 14:30:36 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowInput, aDesiredSize);
|
2013-09-04 14:30:36 +04:00
|
|
|
}
|
|
|
|
|
2013-12-11 06:13:06 +04:00
|
|
|
void
|
|
|
|
nsNumberControlFrame::SyncDisabledState()
|
|
|
|
{
|
2014-04-03 08:18:36 +04:00
|
|
|
EventStates eventStates = mContent->AsElement()->State();
|
2013-12-11 06:13:06 +04:00
|
|
|
if (eventStates.HasState(NS_EVENT_STATE_DISABLED)) {
|
|
|
|
mTextField->SetAttr(kNameSpaceID_None, nsGkAtoms::disabled, EmptyString(),
|
|
|
|
true);
|
|
|
|
} else {
|
|
|
|
mTextField->UnsetAttr(kNameSpaceID_None, nsGkAtoms::disabled, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2013-11-22 17:24:54 +04:00
|
|
|
nsNumberControlFrame::AttributeChanged(int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute,
|
2013-11-22 17:24:54 +04:00
|
|
|
int32_t aModType)
|
|
|
|
{
|
2013-12-11 06:13:06 +04:00
|
|
|
// nsGkAtoms::disabled is handled by SyncDisabledState
|
2013-11-22 17:24:54 +04:00
|
|
|
if (aNameSpaceID == kNameSpaceID_None) {
|
2013-11-22 17:24:54 +04:00
|
|
|
if (aAttribute == nsGkAtoms::placeholder ||
|
2013-12-01 17:49:10 +04:00
|
|
|
aAttribute == nsGkAtoms::readonly ||
|
|
|
|
aAttribute == nsGkAtoms::tabindex) {
|
2018-02-09 19:17:10 +03:00
|
|
|
if (aModType == MutationEventBinding::REMOVAL) {
|
2013-11-22 17:24:54 +04:00
|
|
|
mTextField->UnsetAttr(aNameSpaceID, aAttribute, true);
|
|
|
|
} else {
|
2018-02-09 19:17:10 +03:00
|
|
|
MOZ_ASSERT(aModType == MutationEventBinding::ADDITION ||
|
|
|
|
aModType == MutationEventBinding::MODIFICATION);
|
2013-11-22 17:24:54 +04:00
|
|
|
nsAutoString value;
|
2017-12-07 21:13:50 +03:00
|
|
|
mContent->AsElement()->GetAttr(aNameSpaceID, aAttribute, value);
|
2013-11-22 17:24:54 +04:00
|
|
|
mTextField->SetAttr(aNameSpaceID, aAttribute, value, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsContainerFrame::AttributeChanged(aNameSpaceID, aAttribute,
|
|
|
|
aModType);
|
|
|
|
}
|
|
|
|
|
2013-12-11 06:13:06 +04:00
|
|
|
void
|
2014-04-03 08:18:36 +04:00
|
|
|
nsNumberControlFrame::ContentStatesChanged(EventStates aStates)
|
2013-12-11 06:13:06 +04:00
|
|
|
{
|
|
|
|
if (aStates.HasState(NS_EVENT_STATE_DISABLED)) {
|
|
|
|
nsContentUtils::AddScriptRunner(new SyncDisabledStateEvent(this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-06 02:21:00 +04:00
|
|
|
nsITextControlFrame*
|
|
|
|
nsNumberControlFrame::GetTextFieldFrame()
|
|
|
|
{
|
|
|
|
return do_QueryFrame(GetAnonTextControl()->GetPrimaryFrame());
|
|
|
|
}
|
|
|
|
|
2016-04-26 03:23:21 +03:00
|
|
|
class FocusTextField : public Runnable
|
2014-08-01 04:25:43 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
FocusTextField(nsIContent* aNumber, nsIContent* aTextField)
|
2017-06-12 22:34:10 +03:00
|
|
|
: mozilla::Runnable("FocusTextField")
|
|
|
|
, mNumber(aNumber)
|
|
|
|
, mTextField(aTextField)
|
2014-08-01 04:25:43 +04:00
|
|
|
{}
|
|
|
|
|
2016-08-08 03:54:47 +03:00
|
|
|
NS_IMETHOD Run() override
|
2014-08-01 04:25:43 +04:00
|
|
|
{
|
|
|
|
if (mNumber->AsElement()->State().HasState(NS_EVENT_STATE_FOCUS)) {
|
2018-02-01 22:21:14 +03:00
|
|
|
HTMLInputElement::FromContent(mTextField)->Focus(IgnoreErrors());
|
2014-08-01 04:25:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsCOMPtr<nsIContent> mNumber;
|
|
|
|
nsCOMPtr<nsIContent> mTextField;
|
|
|
|
};
|
|
|
|
|
2013-09-04 14:30:36 +04:00
|
|
|
nsresult
|
2013-12-03 08:49:03 +04:00
|
|
|
nsNumberControlFrame::MakeAnonymousElement(Element** aResult,
|
2013-09-04 14:30:36 +04:00
|
|
|
nsTArray<ContentInfo>& aElements,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aTagName,
|
2017-01-13 06:21:11 +03:00
|
|
|
CSSPseudoElementType aPseudoType)
|
2013-09-04 14:30:36 +04:00
|
|
|
{
|
|
|
|
// Get the NodeInfoManager and tag necessary to create the anonymous divs.
|
2014-08-21 04:38:01 +04:00
|
|
|
nsCOMPtr<nsIDocument> doc = mContent->GetComposedDoc();
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<Element> resultElement = doc->CreateHTMLElement(aTagName);
|
2017-01-13 06:21:11 +03:00
|
|
|
resultElement->SetPseudoElementType(aPseudoType);
|
2013-09-04 14:30:36 +04:00
|
|
|
|
|
|
|
// Associate the pseudo-element with the anonymous child
|
2017-01-13 06:21:11 +03:00
|
|
|
if (!aElements.AppendElement(resultElement)) {
|
2013-09-04 14:30:36 +04:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2013-12-03 08:49:03 +04:00
|
|
|
|
2016-02-17 01:07:00 +03:00
|
|
|
if (aPseudoType == CSSPseudoElementType::mozNumberSpinDown ||
|
|
|
|
aPseudoType == CSSPseudoElementType::mozNumberSpinUp) {
|
2013-12-11 07:19:26 +04:00
|
|
|
resultElement->SetAttr(kNameSpaceID_None, nsGkAtoms::role,
|
|
|
|
NS_LITERAL_STRING("button"), false);
|
|
|
|
}
|
|
|
|
|
2013-12-03 08:49:03 +04:00
|
|
|
resultElement.forget(aResult);
|
2013-09-04 14:30:36 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsNumberControlFrame::CreateAnonymousContent(nsTArray<ContentInfo>& aElements)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
// We create an anonymous tree for our input element that is structured as
|
|
|
|
// follows:
|
|
|
|
//
|
|
|
|
// input
|
|
|
|
// div - outer wrapper with "display:flex" by default
|
|
|
|
// input - text input field
|
|
|
|
// div - spin box wrapping up/down arrow buttons
|
|
|
|
// div - spin up (up arrow button)
|
|
|
|
// div - spin down (down arrow button)
|
|
|
|
//
|
|
|
|
// If you change this, be careful to change the destruction order in
|
|
|
|
// nsNumberControlFrame::DestroyFrom.
|
|
|
|
|
|
|
|
|
|
|
|
// Create the anonymous outer wrapper:
|
|
|
|
rv = MakeAnonymousElement(getter_AddRefs(mOuterWrapper),
|
|
|
|
aElements,
|
|
|
|
nsGkAtoms::div,
|
2017-01-13 06:21:11 +03:00
|
|
|
CSSPseudoElementType::mozNumberWrapper);
|
2013-09-04 14:30:36 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
ContentInfo& outerWrapperCI = aElements.LastElement();
|
|
|
|
|
|
|
|
// Create the ::-moz-number-text pseudo-element:
|
|
|
|
rv = MakeAnonymousElement(getter_AddRefs(mTextField),
|
|
|
|
outerWrapperCI.mChildren,
|
|
|
|
nsGkAtoms::input,
|
2017-01-13 06:21:11 +03:00
|
|
|
CSSPseudoElementType::mozNumberText);
|
2013-09-04 14:30:36 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
mTextField->SetAttr(kNameSpaceID_None, nsGkAtoms::type,
|
|
|
|
NS_LITERAL_STRING("text"), PR_FALSE);
|
|
|
|
|
2013-12-01 17:49:10 +04:00
|
|
|
HTMLInputElement* content = HTMLInputElement::FromContent(mContent);
|
|
|
|
HTMLInputElement* textField = HTMLInputElement::FromContent(mTextField);
|
|
|
|
|
2011-06-21 18:17:10 +04:00
|
|
|
// Initialize the text field value:
|
|
|
|
nsAutoString value;
|
2016-11-15 20:46:32 +03:00
|
|
|
content->GetValue(value, CallerType::System);
|
2014-01-23 19:43:12 +04:00
|
|
|
SetValueOfAnonTextControl(value);
|
2011-06-21 18:17:10 +04:00
|
|
|
|
2013-11-22 17:24:54 +04:00
|
|
|
// If we're readonly, make sure our anonymous text control is too:
|
|
|
|
nsAutoString readonly;
|
2017-12-07 21:13:50 +03:00
|
|
|
if (mContent->AsElement()->GetAttr(kNameSpaceID_None, nsGkAtoms::readonly,
|
|
|
|
readonly)) {
|
2013-11-22 17:24:54 +04:00
|
|
|
mTextField->SetAttr(kNameSpaceID_None, nsGkAtoms::readonly, readonly, false);
|
|
|
|
}
|
|
|
|
|
2013-12-01 17:49:10 +04:00
|
|
|
// Propogate our tabindex:
|
2018-02-01 22:21:14 +03:00
|
|
|
textField->SetTabIndex(content->TabIndex(), IgnoreErrors());
|
2013-12-01 17:49:10 +04:00
|
|
|
|
2013-11-22 17:24:54 +04:00
|
|
|
// Initialize the text field's placeholder, if ours is set:
|
|
|
|
nsAutoString placeholder;
|
2017-12-07 21:13:50 +03:00
|
|
|
if (mContent->AsElement()->GetAttr(kNameSpaceID_None, nsGkAtoms::placeholder,
|
|
|
|
placeholder)) {
|
2013-11-22 17:24:54 +04:00
|
|
|
mTextField->SetAttr(kNameSpaceID_None, nsGkAtoms::placeholder, placeholder, false);
|
|
|
|
}
|
|
|
|
|
2011-06-21 18:13:12 +04:00
|
|
|
if (mContent->AsElement()->State().HasState(NS_EVENT_STATE_FOCUS)) {
|
|
|
|
// We don't want to focus the frame but the text field.
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<FocusTextField> focusJob = new FocusTextField(mContent, mTextField);
|
2014-08-01 04:25:43 +04:00
|
|
|
nsContentUtils::AddScriptRunner(focusJob);
|
2011-06-21 18:13:12 +04:00
|
|
|
}
|
|
|
|
|
2017-05-21 12:15:00 +03:00
|
|
|
if (StyleDisplay()->mAppearance == NS_THEME_TEXTFIELD) {
|
2013-12-09 03:26:07 +04:00
|
|
|
// The author has elected to hide the spinner by setting this
|
|
|
|
// -moz-appearance. We will reframe if it changes.
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2013-09-04 14:30:36 +04:00
|
|
|
// Create the ::-moz-number-spin-box pseudo-element:
|
|
|
|
rv = MakeAnonymousElement(getter_AddRefs(mSpinBox),
|
|
|
|
outerWrapperCI.mChildren,
|
|
|
|
nsGkAtoms::div,
|
2017-01-13 06:21:11 +03:00
|
|
|
CSSPseudoElementType::mozNumberSpinBox);
|
2013-09-04 14:30:36 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
ContentInfo& spinBoxCI = outerWrapperCI.mChildren.LastElement();
|
|
|
|
|
|
|
|
// Create the ::-moz-number-spin-up pseudo-element:
|
|
|
|
rv = MakeAnonymousElement(getter_AddRefs(mSpinUp),
|
|
|
|
spinBoxCI.mChildren,
|
|
|
|
nsGkAtoms::div,
|
2017-01-13 06:21:11 +03:00
|
|
|
CSSPseudoElementType::mozNumberSpinUp);
|
2013-09-04 14:30:36 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Create the ::-moz-number-spin-down pseudo-element:
|
|
|
|
rv = MakeAnonymousElement(getter_AddRefs(mSpinDown),
|
|
|
|
spinBoxCI.mChildren,
|
|
|
|
nsGkAtoms::div,
|
2017-01-13 06:21:11 +03:00
|
|
|
CSSPseudoElementType::mozNumberSpinDown);
|
2013-12-11 06:13:06 +04:00
|
|
|
|
|
|
|
SyncDisabledState();
|
|
|
|
|
2013-09-04 14:30:36 +04:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-05-06 02:21:00 +04:00
|
|
|
void
|
|
|
|
nsNumberControlFrame::SetFocus(bool aOn, bool aRepaint)
|
|
|
|
{
|
|
|
|
GetTextFieldFrame()->SetFocus(aOn, aRepaint);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2017-10-03 01:05:19 +03:00
|
|
|
nsNumberControlFrame::SetFormProperty(nsAtom* aName, const nsAString& aValue)
|
2014-05-06 02:21:00 +04:00
|
|
|
{
|
|
|
|
return GetTextFieldFrame()->SetFormProperty(aName, aValue);
|
|
|
|
}
|
|
|
|
|
2011-06-21 18:13:12 +04:00
|
|
|
HTMLInputElement*
|
|
|
|
nsNumberControlFrame::GetAnonTextControl()
|
|
|
|
{
|
|
|
|
return mTextField ? HTMLInputElement::FromContent(mTextField) : nullptr;
|
|
|
|
}
|
|
|
|
|
2013-12-05 20:20:34 +04:00
|
|
|
/* static */ nsNumberControlFrame*
|
|
|
|
nsNumberControlFrame::GetNumberControlFrameForTextField(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
// If aFrame is the anon text field for an <input type=number> then we expect
|
|
|
|
// the frame of its mContent's grandparent to be that input's frame. We
|
|
|
|
// have to check for this via the content tree because we don't know whether
|
|
|
|
// extra frames will be wrapped around any of the elements between aFrame and
|
|
|
|
// the nsNumberControlFrame that we're looking for (e.g. flex wrappers).
|
|
|
|
nsIContent* content = aFrame->GetContent();
|
|
|
|
if (content->IsInNativeAnonymousSubtree() &&
|
|
|
|
content->GetParent() && content->GetParent()->GetParent()) {
|
|
|
|
nsIContent* grandparent = content->GetParent()->GetParent();
|
2015-03-03 14:08:59 +03:00
|
|
|
if (grandparent->IsHTMLElement(nsGkAtoms::input) &&
|
2017-12-07 21:13:50 +03:00
|
|
|
grandparent->AsElement()->AttrValueIs(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::type,
|
|
|
|
nsGkAtoms::number,
|
|
|
|
eCaseMatters)) {
|
2013-12-05 20:20:34 +04:00
|
|
|
return do_QueryFrame(grandparent->GetPrimaryFrame());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ nsNumberControlFrame*
|
|
|
|
nsNumberControlFrame::GetNumberControlFrameForSpinButton(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
// If aFrame is a spin button for an <input type=number> then we expect the
|
|
|
|
// frame of its mContent's great-grandparent to be that input's frame. We
|
|
|
|
// have to check for this via the content tree because we don't know whether
|
|
|
|
// extra frames will be wrapped around any of the elements between aFrame and
|
|
|
|
// the nsNumberControlFrame that we're looking for (e.g. flex wrappers).
|
|
|
|
nsIContent* content = aFrame->GetContent();
|
|
|
|
if (content->IsInNativeAnonymousSubtree() &&
|
|
|
|
content->GetParent() && content->GetParent()->GetParent() &&
|
|
|
|
content->GetParent()->GetParent()->GetParent()) {
|
|
|
|
nsIContent* greatgrandparent = content->GetParent()->GetParent()->GetParent();
|
2015-03-03 14:08:59 +03:00
|
|
|
if (greatgrandparent->IsHTMLElement(nsGkAtoms::input) &&
|
2017-12-07 21:13:50 +03:00
|
|
|
greatgrandparent->AsElement()->AttrValueIs(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::type,
|
|
|
|
nsGkAtoms::number,
|
|
|
|
eCaseMatters)) {
|
2013-12-05 20:20:34 +04:00
|
|
|
return do_QueryFrame(greatgrandparent->GetPrimaryFrame());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-12-01 17:49:10 +04:00
|
|
|
int32_t
|
|
|
|
nsNumberControlFrame::GetSpinButtonForPointerEvent(WidgetGUIEvent* aEvent) const
|
|
|
|
{
|
2014-08-04 09:28:50 +04:00
|
|
|
MOZ_ASSERT(aEvent->mClass == eMouseEventClass, "Unexpected event type");
|
2013-12-01 17:49:10 +04:00
|
|
|
|
2013-12-09 03:26:07 +04:00
|
|
|
if (!mSpinBox) {
|
|
|
|
// we don't have a spinner
|
|
|
|
return eSpinButtonNone;
|
|
|
|
}
|
2016-04-18 19:33:23 +03:00
|
|
|
if (aEvent->mOriginalTarget == mSpinUp) {
|
2013-12-01 17:49:10 +04:00
|
|
|
return eSpinButtonUp;
|
|
|
|
}
|
2016-04-18 19:33:23 +03:00
|
|
|
if (aEvent->mOriginalTarget == mSpinDown) {
|
2013-12-01 17:49:10 +04:00
|
|
|
return eSpinButtonDown;
|
|
|
|
}
|
2016-04-18 19:33:23 +03:00
|
|
|
if (aEvent->mOriginalTarget == mSpinBox) {
|
2013-12-05 20:20:34 +04:00
|
|
|
// In the case that the up/down buttons are hidden (display:none) we use
|
|
|
|
// just the spin box element, spinning up if the pointer is over the top
|
|
|
|
// half of the element, or down if it's over the bottom half. This is
|
|
|
|
// important to handle since this is the state things are in for the
|
|
|
|
// default UA style sheet. See the comment in forms.css for why.
|
2016-04-18 17:09:02 +03:00
|
|
|
LayoutDeviceIntPoint absPoint = aEvent->mRefPoint;
|
2013-12-05 20:20:34 +04:00
|
|
|
nsPoint point =
|
|
|
|
nsLayoutUtils::GetEventCoordinatesRelativeTo(aEvent,
|
2015-02-02 01:27:31 +03:00
|
|
|
absPoint, mSpinBox->GetPrimaryFrame());
|
2013-12-05 20:20:34 +04:00
|
|
|
if (point != nsPoint(NS_UNCONSTRAINEDSIZE, NS_UNCONSTRAINEDSIZE)) {
|
|
|
|
if (point.y < mSpinBox->GetPrimaryFrame()->GetSize().height / 2) {
|
|
|
|
return eSpinButtonUp;
|
|
|
|
}
|
|
|
|
return eSpinButtonDown;
|
|
|
|
}
|
|
|
|
}
|
2013-12-01 17:49:10 +04:00
|
|
|
return eSpinButtonNone;
|
|
|
|
}
|
|
|
|
|
2013-12-05 20:20:34 +04:00
|
|
|
void
|
|
|
|
nsNumberControlFrame::SpinnerStateChanged() const
|
|
|
|
{
|
2013-12-09 03:26:07 +04:00
|
|
|
MOZ_ASSERT(mSpinUp && mSpinDown,
|
|
|
|
"We should not be called when we have no spinner");
|
|
|
|
|
2013-12-05 20:20:34 +04:00
|
|
|
nsIFrame* spinUpFrame = mSpinUp->GetPrimaryFrame();
|
|
|
|
if (spinUpFrame && spinUpFrame->IsThemed()) {
|
|
|
|
spinUpFrame->InvalidateFrame();
|
|
|
|
}
|
|
|
|
nsIFrame* spinDownFrame = mSpinDown->GetPrimaryFrame();
|
|
|
|
if (spinDownFrame && spinDownFrame->IsThemed()) {
|
|
|
|
spinDownFrame->InvalidateFrame();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
nsNumberControlFrame::SpinnerUpButtonIsDepressed() const
|
|
|
|
{
|
|
|
|
return HTMLInputElement::FromContent(mContent)->
|
|
|
|
NumberSpinnerUpButtonIsDepressed();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
nsNumberControlFrame::SpinnerDownButtonIsDepressed() const
|
|
|
|
{
|
|
|
|
return HTMLInputElement::FromContent(mContent)->
|
|
|
|
NumberSpinnerDownButtonIsDepressed();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
nsNumberControlFrame::IsFocused() const
|
|
|
|
{
|
|
|
|
// Normally this depends on the state of our anonymous text control (which
|
|
|
|
// takes focus for us), but in the case that it does not have a frame we will
|
|
|
|
// have focus ourself.
|
|
|
|
return mTextField->AsElement()->State().HasState(NS_EVENT_STATE_FOCUS) ||
|
|
|
|
mContent->AsElement()->State().HasState(NS_EVENT_STATE_FOCUS);
|
|
|
|
}
|
|
|
|
|
2013-12-01 17:49:10 +04:00
|
|
|
void
|
|
|
|
nsNumberControlFrame::HandleFocusEvent(WidgetEvent* aEvent)
|
|
|
|
{
|
2016-04-18 19:33:23 +03:00
|
|
|
if (aEvent->mOriginalTarget != mTextField) {
|
2013-12-01 17:49:10 +04:00
|
|
|
// Move focus to our text field
|
2017-12-19 03:39:45 +03:00
|
|
|
RefPtr<HTMLInputElement> textField = HTMLInputElement::FromContent(mTextField);
|
2018-02-01 22:21:14 +03:00
|
|
|
textField->Focus(IgnoreErrors());
|
2013-12-01 17:49:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-14 06:46:13 +03:00
|
|
|
void
|
2013-12-11 15:41:51 +04:00
|
|
|
nsNumberControlFrame::HandleSelectCall()
|
|
|
|
{
|
2017-12-19 03:39:45 +03:00
|
|
|
RefPtr<HTMLInputElement> textField = HTMLInputElement::FromContent(mTextField);
|
|
|
|
textField->Select();
|
2013-12-11 15:41:51 +04:00
|
|
|
}
|
|
|
|
|
2013-12-05 20:20:34 +04:00
|
|
|
#define STYLES_DISABLING_NATIVE_THEMING \
|
|
|
|
NS_AUTHOR_SPECIFIED_BACKGROUND | \
|
|
|
|
NS_AUTHOR_SPECIFIED_PADDING | \
|
|
|
|
NS_AUTHOR_SPECIFIED_BORDER
|
|
|
|
|
|
|
|
bool
|
|
|
|
nsNumberControlFrame::ShouldUseNativeStyleForSpinner() const
|
|
|
|
{
|
2013-12-09 03:26:07 +04:00
|
|
|
MOZ_ASSERT(mSpinUp && mSpinDown,
|
|
|
|
"We should not be called when we have no spinner");
|
|
|
|
|
2013-12-05 20:20:34 +04:00
|
|
|
nsIFrame* spinUpFrame = mSpinUp->GetPrimaryFrame();
|
|
|
|
nsIFrame* spinDownFrame = mSpinDown->GetPrimaryFrame();
|
|
|
|
|
|
|
|
return spinUpFrame &&
|
2017-05-21 12:15:00 +03:00
|
|
|
spinUpFrame->StyleDisplay()->mAppearance == NS_THEME_SPINNER_UPBUTTON &&
|
2013-12-05 20:20:34 +04:00
|
|
|
!PresContext()->HasAuthorSpecifiedRules(spinUpFrame,
|
|
|
|
STYLES_DISABLING_NATIVE_THEMING) &&
|
|
|
|
spinDownFrame &&
|
2017-05-21 12:15:00 +03:00
|
|
|
spinDownFrame->StyleDisplay()->mAppearance == NS_THEME_SPINNER_DOWNBUTTON &&
|
2013-12-05 20:20:34 +04:00
|
|
|
!PresContext()->HasAuthorSpecifiedRules(spinDownFrame,
|
|
|
|
STYLES_DISABLING_NATIVE_THEMING);
|
|
|
|
}
|
|
|
|
|
2013-09-04 14:30:36 +04:00
|
|
|
void
|
2014-07-16 22:41:57 +04:00
|
|
|
nsNumberControlFrame::AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2013-09-04 14:30:36 +04:00
|
|
|
uint32_t aFilter)
|
|
|
|
{
|
|
|
|
// Only one direct anonymous child:
|
2014-07-16 22:41:57 +04:00
|
|
|
if (mOuterWrapper) {
|
|
|
|
aElements.AppendElement(mOuterWrapper);
|
|
|
|
}
|
2013-09-04 14:30:36 +04:00
|
|
|
}
|
2011-06-21 18:17:10 +04:00
|
|
|
|
|
|
|
void
|
2014-01-23 19:43:12 +04:00
|
|
|
nsNumberControlFrame::SetValueOfAnonTextControl(const nsAString& aValue)
|
2011-06-21 18:17:10 +04:00
|
|
|
{
|
2013-11-22 17:24:53 +04:00
|
|
|
if (mHandlingInputEvent) {
|
|
|
|
// We have been called while our HTMLInputElement is processing a DOM
|
|
|
|
// 'input' event targeted at our anonymous text control. Our
|
|
|
|
// HTMLInputElement has taken the value of our anon text control and
|
|
|
|
// called SetValueInternal on itself to keep its own value in sync. As a
|
|
|
|
// result SetValueInternal has called us. In this one case we do not want
|
|
|
|
// to update our anon text control, especially since aValue will be the
|
|
|
|
// sanitized value, and only the internal value should be sanitized (not
|
|
|
|
// the value shown to the user, and certainly we shouldn't change it as
|
|
|
|
// they type).
|
|
|
|
return;
|
|
|
|
}
|
2014-01-23 19:43:12 +04:00
|
|
|
|
|
|
|
// Init to aValue so that we set aValue as the value of our text control if
|
|
|
|
// aValue isn't a valid number (in which case the HTMLInputElement's validity
|
|
|
|
// state will be set to invalid) or if aValue can't be localized:
|
|
|
|
nsAutoString localizedValue(aValue);
|
|
|
|
|
|
|
|
// Try and localize the value we will set:
|
|
|
|
Decimal val = HTMLInputElement::StringToDecimal(aValue);
|
|
|
|
if (val.isFinite()) {
|
|
|
|
ICUUtils::LanguageTagIterForContent langTagIter(mContent);
|
|
|
|
ICUUtils::LocalizeNumber(val.toDouble(), langTagIter, localizedValue);
|
|
|
|
}
|
|
|
|
|
2011-06-21 18:17:10 +04:00
|
|
|
// We need to update the value of our anonymous text control here. Note that
|
|
|
|
// this must be its value, and not its 'value' attribute (the default value),
|
|
|
|
// since the default value is ignored once a user types into the text
|
|
|
|
// control.
|
2016-11-15 20:46:31 +03:00
|
|
|
//
|
|
|
|
// Pass NonSystem as the caller type; this should work fine for actual number
|
|
|
|
// inputs, and be safe in case our input has a type we don't expect for some
|
|
|
|
// reason.
|
|
|
|
HTMLInputElement::FromContent(mTextField)->SetValue(localizedValue,
|
|
|
|
CallerType::NonSystem,
|
2018-02-01 22:21:14 +03:00
|
|
|
IgnoreErrors());
|
2014-01-23 19:43:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsNumberControlFrame::GetValueOfAnonTextControl(nsAString& aValue)
|
|
|
|
{
|
|
|
|
if (!mTextField) {
|
|
|
|
aValue.Truncate();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-15 20:46:32 +03:00
|
|
|
HTMLInputElement::FromContent(mTextField)->GetValue(aValue, CallerType::System);
|
2014-01-23 19:43:12 +04:00
|
|
|
|
2014-02-19 00:00:35 +04:00
|
|
|
// Here we need to de-localize any number typed in by the user. That is, we
|
|
|
|
// need to convert it from the number format of the user's language, region,
|
|
|
|
// etc. to the format that the HTML 5 spec defines to be a "valid
|
|
|
|
// floating-point number":
|
2014-01-23 19:43:12 +04:00
|
|
|
//
|
|
|
|
// http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#floating-point-numbers
|
|
|
|
//
|
2015-09-18 00:17:35 +03:00
|
|
|
// This is necessary to allow the number that we return to be parsed by
|
|
|
|
// functions like HTMLInputElement::StringToDecimal (the HTML-5-conforming
|
|
|
|
// parsing function) which don't know how to handle numbers that are
|
|
|
|
// formatted differently (for example, with non-ASCII digits, with grouping
|
|
|
|
// separator characters or with a decimal separator character other than
|
|
|
|
// '.').
|
|
|
|
|
2014-01-23 19:43:12 +04:00
|
|
|
ICUUtils::LanguageTagIterForContent langTagIter(mContent);
|
|
|
|
double value = ICUUtils::ParseNumber(aValue, langTagIter);
|
2015-09-18 00:17:35 +03:00
|
|
|
if (!IsFinite(value)) {
|
2014-01-23 19:43:12 +04:00
|
|
|
aValue.Truncate();
|
2015-09-18 00:17:35 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (value == HTMLInputElement::StringToDecimal(aValue).toDouble()) {
|
|
|
|
// We want to preserve the formatting of the number as typed in by the user
|
|
|
|
// whenever possible. Since the localized serialization parses to the same
|
|
|
|
// number as the de-localized serialization, we can do that. This helps
|
|
|
|
// prevent normalization of input such as "2e2" (which would otherwise be
|
|
|
|
// converted to "200"). Content relies on this.
|
|
|
|
//
|
|
|
|
// Typically we will only get here for locales in which numbers are
|
|
|
|
// formatted in the same way as they are for HTML5's "valid floating-point
|
|
|
|
// number" format.
|
|
|
|
return;
|
2014-01-23 19:43:12 +04:00
|
|
|
}
|
2015-09-18 00:17:35 +03:00
|
|
|
// We can't preserve the formatting, otherwise functions such as
|
|
|
|
// HTMLInputElement::StringToDecimal would incorrectly process the number
|
|
|
|
// input by the user. For example, "12.345" with lang=de de-localizes as
|
|
|
|
// 12345, but HTMLInputElement::StringToDecimal would mistakenly parse it as
|
|
|
|
// 12.345. Another example would be "12,345" with lang=de which de-localizes
|
|
|
|
// as 12.345, but HTMLInputElement::StringToDecimal would parse it to NaN.
|
|
|
|
aValue.Truncate();
|
|
|
|
aValue.AppendFloat(value);
|
2011-06-21 18:17:10 +04:00
|
|
|
}
|
2013-12-03 03:57:50 +04:00
|
|
|
|
2014-01-30 16:54:12 +04:00
|
|
|
bool
|
|
|
|
nsNumberControlFrame::AnonTextControlIsEmpty()
|
|
|
|
{
|
|
|
|
if (!mTextField) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
nsAutoString value;
|
2016-11-15 20:46:32 +03:00
|
|
|
HTMLInputElement::FromContent(mTextField)->GetValue(value, CallerType::System);
|
2014-01-30 16:54:12 +04:00
|
|
|
return value.IsEmpty();
|
|
|
|
}
|
|
|
|
|
2013-12-03 08:49:03 +04:00
|
|
|
Element*
|
2016-02-17 23:37:00 +03:00
|
|
|
nsNumberControlFrame::GetPseudoElement(CSSPseudoElementType aType)
|
2013-12-03 03:57:50 +04:00
|
|
|
{
|
2016-02-17 01:07:00 +03:00
|
|
|
if (aType == CSSPseudoElementType::mozNumberWrapper) {
|
2013-12-03 03:57:50 +04:00
|
|
|
return mOuterWrapper;
|
|
|
|
}
|
|
|
|
|
2016-02-17 01:07:00 +03:00
|
|
|
if (aType == CSSPseudoElementType::mozNumberText) {
|
2013-12-03 03:57:50 +04:00
|
|
|
return mTextField;
|
|
|
|
}
|
|
|
|
|
2016-02-17 01:07:00 +03:00
|
|
|
if (aType == CSSPseudoElementType::mozNumberSpinBox) {
|
2015-03-07 00:33:30 +03:00
|
|
|
// Might be null.
|
2013-12-03 03:57:50 +04:00
|
|
|
return mSpinBox;
|
|
|
|
}
|
|
|
|
|
2016-02-17 01:07:00 +03:00
|
|
|
if (aType == CSSPseudoElementType::mozNumberSpinUp) {
|
2015-03-07 00:33:30 +03:00
|
|
|
// Might be null.
|
2013-12-03 03:57:50 +04:00
|
|
|
return mSpinUp;
|
|
|
|
}
|
|
|
|
|
2016-02-17 01:07:00 +03:00
|
|
|
if (aType == CSSPseudoElementType::mozNumberSpinDown) {
|
2015-03-07 00:33:30 +03:00
|
|
|
// Might be null.
|
2013-12-03 03:57:50 +04:00
|
|
|
return mSpinDown;
|
|
|
|
}
|
|
|
|
|
2013-12-03 08:49:03 +04:00
|
|
|
return nsContainerFrame::GetPseudoElement(aType);
|
2013-12-03 03:57:50 +04:00
|
|
|
}
|
2013-12-11 07:19:26 +04:00
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
a11y::AccType
|
|
|
|
nsNumberControlFrame::AccessibleType()
|
|
|
|
{
|
|
|
|
return a11y::eHTMLSpinnerType;
|
|
|
|
}
|
|
|
|
#endif
|