Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/gfx/layers/apz/test/gtest/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 3 kB image not shown  

Quelle  TestInputQueue.cpp

  Sprache: C
 

/* 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 "APZCTreeManagerTester.h"
#include "APZTestCommon.h"
#include "InputUtils.h"
#include "mozilla/layers/ScrollableLayerGuid.h"

// Test of scenario described in bug 1269067 - that a continuing mouse drag
// doesn't interrupt a wheel scrolling animation
TEST_F(APZCTreeManagerTester, WheelInterruptedByMouseDrag) {
  // Needed because the test uses SmoothWheel()
  SCOPED_GFX_PREF_BOOL("general.smoothScroll", true);

  // Set up a scrollable layer
  CreateSimpleScrollingLayer();
  ScopedLayerTreeRegistration registration(LayersId{0}, mcc);
  UpdateHitTestingTree();
  RefPtr<TestAsyncPanZoomController> apzc = ApzcOf(root);

  // First start the mouse drag
  uint64_t dragBlockId =
      MouseDown(apzc, ScreenIntPoint(55), mcc->Time()).mInputBlockId;
  uint64_t tmpBlockId =
      MouseMove(apzc, ScreenIntPoint(66), mcc->Time()).mInputBlockId;
  EXPECT_EQ(dragBlockId, tmpBlockId);

  // Insert the wheel event, check that it has a new block id
  uint64_t wheelBlockId =
      SmoothWheel(apzc, ScreenIntPoint(66), ScreenPoint(01), mcc->Time())
          .mInputBlockId;
  EXPECT_NE(dragBlockId, wheelBlockId);

  // Continue the drag, check that the block id is the same as before
  tmpBlockId = MouseMove(apzc, ScreenIntPoint(75), mcc->Time()).mInputBlockId;
  EXPECT_EQ(dragBlockId, tmpBlockId);

  // Finish the wheel animation
  apzc->AdvanceAnimationsUntilEnd();

  // Check that it scrolled
  ParentLayerPoint scroll = apzc->GetCurrentAsyncScrollOffset(
      AsyncPanZoomController::eForEventHandling);
  EXPECT_EQ(scroll.x, 0);
  EXPECT_EQ(scroll.y, 10);  // We scrolled 1 "line" or 10 pixels
}

// Test of the scenario in bug 1894228, where the touchpad generates a
// mixture of wheel events with horizontal and vertical deltas, and if the
// content is only scrollable in the vertical direction, then an input
// block starting with a wheel event with a horizontal can prevent the
// entire input block from causing any scrolling.
TEST_F(APZCTreeManagerTester, HorizontalDeltaInterferesWithVerticalScrolling) {
  using ViewID = ScrollableLayerGuid::ViewID;
  ViewID rootScrollId = ScrollableLayerGuid::START_SCROLL_ID;
  const char* treeShape = "x";
  LayerIntRect layerVisibleRect[] = {
      LayerIntRect(00100100),
  };
  CreateScrollData(treeShape, layerVisibleRect);
  // Only vertically scrollable
  SetScrollableFrameMetrics(layers[0], rootScrollId, CSSRect(001001000));

  ScopedLayerTreeRegistration registration(LayersId{0}, mcc);
  UpdateHitTestingTree();
  RefPtr<TestAsyncPanZoomController> apzc = ApzcOf(root);

  // Configure the APZC to wait for main-thread confirmations before
  // processing events. (This is needed to trigger the buggy codepath.)
  apzc->SetWaitForMainThread();

  // Send a wheel event with a horizontal delta.
  ScreenIntPoint cursorLocation(5050);
  uint64_t wheelBlockId1 =
      Wheel(apzc, cursorLocation, ScreenIntPoint(-100), mcc->Time())
          .mInputBlockId;

  // Send a wheel event with a vertical delta.
  uint64_t wheelBlockId2 =
      Wheel(apzc, cursorLocation, ScreenIntPoint(010), mcc->Time())
          .mInputBlockId;

  // Since the wheel block's target APZC has not been confirmed yet, the second
  // event will go into the same block as the first.
  EXPECT_EQ(wheelBlockId1, wheelBlockId2);

  // Confirm the input block.
  manager->ContentReceivedInputBlock(wheelBlockId1, false);
  manager->SetTargetAPZC(wheelBlockId1, {apzc->GetGuid()});

  // We should have scrolled vertically.
  EXPECT_EQ(ParentLayerPoint(010),
            apzc->GetCurrentAsyncScrollOffset(
                AsyncPanZoomController::eForEventHandling));
}

Messung V0.5 in Prozent
C=83 H=93 G=87

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-08-26) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

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 und die Messung sind noch experimentell.