mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
74a139ee22
19 changed files with 477 additions and 204 deletions
|
|
@ -11,6 +11,7 @@
|
|||
#include "mozilla/EffectCompositor.h"
|
||||
#include "mozilla/EffectSet.h"
|
||||
#include "mozilla/EventDispatcher.h"
|
||||
#include "mozilla/EventStateManager.h"
|
||||
#include "mozilla/FloatingPoint.h"
|
||||
#include "mozilla/gfx/gfxVars.h"
|
||||
#include "mozilla/gfx/PathHelpers.h"
|
||||
|
|
@ -2255,6 +2256,59 @@ nsLayoutUtils::GetPopupFrameForEventCoordinates(nsPresContext* aPresContext,
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
void
|
||||
nsLayoutUtils::GetContainerAndOffsetAtEvent(nsIPresShell* aPresShell,
|
||||
const WidgetEvent* aEvent,
|
||||
nsIContent** aContainer,
|
||||
int32_t* aOffset)
|
||||
{
|
||||
MOZ_ASSERT(aContainer || aOffset);
|
||||
|
||||
if (aContainer) {
|
||||
*aContainer = nullptr;
|
||||
}
|
||||
if (aOffset) {
|
||||
*aOffset = 0;
|
||||
}
|
||||
|
||||
if (!aPresShell) {
|
||||
return;
|
||||
}
|
||||
|
||||
aPresShell->FlushPendingNotifications(Flush_Layout);
|
||||
|
||||
RefPtr<nsPresContext> presContext = aPresShell->GetPresContext();
|
||||
if (!presContext) {
|
||||
return;
|
||||
}
|
||||
|
||||
nsIFrame* targetFrame = presContext->EventStateManager()->GetEventTarget();
|
||||
if (!targetFrame) {
|
||||
return;
|
||||
}
|
||||
|
||||
nsPoint point =
|
||||
nsLayoutUtils::GetEventCoordinatesRelativeTo(aEvent, targetFrame);
|
||||
|
||||
if (aContainer) {
|
||||
// TODO: This result may be useful to change to Selection. However, this
|
||||
// may return improper node (e.g., native anonymous node) for the
|
||||
// Selection. Perhaps, this should take Selection optionally and
|
||||
// if it's specified, needs to check if it's proper for the
|
||||
// Selection.
|
||||
nsCOMPtr<nsIContent> container =
|
||||
targetFrame->GetContentOffsetsFromPoint(point).content;
|
||||
if (container &&
|
||||
(!container->ChromeOnlyAccess() ||
|
||||
nsContentUtils::CanAccessNativeAnon())) {
|
||||
container.forget(aContainer);
|
||||
}
|
||||
}
|
||||
if (aOffset) {
|
||||
*aOffset = targetFrame->GetContentOffsetsFromPoint(point).offset;
|
||||
}
|
||||
}
|
||||
|
||||
static void ConstrainToCoordValues(float& aStart, float& aSize)
|
||||
{
|
||||
MOZ_ASSERT(aSize >= 0);
|
||||
|
|
|
|||
|
|
@ -728,6 +728,21 @@ public:
|
|||
nsPresContext* aPresContext,
|
||||
const mozilla::WidgetEvent* aEvent);
|
||||
|
||||
/**
|
||||
* Get container and offset if aEvent collapses Selection.
|
||||
* @param aPresShell The PresShell handling aEvent.
|
||||
* @param aEvent The event having coordinates where you want to
|
||||
* collapse Selection.
|
||||
* @param aContainer Returns the container node at the point.
|
||||
* Set nullptr if you don't need this.
|
||||
* @param aOffset Returns offset in the container node at the point.
|
||||
* Set nullptr if you don't need this.
|
||||
*/
|
||||
static void GetContainerAndOffsetAtEvent(nsIPresShell* aPresShell,
|
||||
const mozilla::WidgetEvent* aEvent,
|
||||
nsIContent** aContainer,
|
||||
int32_t* aOffset);
|
||||
|
||||
/**
|
||||
* Translate from widget coordinates to the view's coordinates
|
||||
* @param aPresContext the PresContext for the view
|
||||
|
|
|
|||
|
|
@ -118,8 +118,8 @@ nsHTMLButtonControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|||
|
||||
nsDisplayListCollection set(aBuilder);
|
||||
|
||||
// Do not allow the child subtree to receive events.
|
||||
if (!isForEventDelivery) {
|
||||
// HTMLInputElement buttons are opaque to hit tests, HTMLButtonElement buttons are not.
|
||||
if (!(isForEventDelivery && this->IsInput())) {
|
||||
DisplayListClipState::AutoSaveRestore clipState(aBuilder);
|
||||
|
||||
if (ShouldClipPaintingToBorderBox()) {
|
||||
|
|
|
|||
|
|
@ -699,6 +699,16 @@ button {
|
|||
justify-items: inherit;
|
||||
}
|
||||
|
||||
@supports -moz-bool-pref("dom.forms.button.standards_compliant") {
|
||||
/*
|
||||
* Button content does historically not receive pointer events.
|
||||
* This pref is enabled by default and can disabled to get Webkit behavior.
|
||||
*/
|
||||
button * {
|
||||
pointer-events: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
button:hover,
|
||||
input[type="color"]:-moz-system-metric(color-picker-available):hover,
|
||||
input[type="reset"]:hover,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue