Bug 1930045 [wpt PR 49058] - Revert "Add more descriptive error messages to TapToStopFling.html for better debugging.", a=testonly

Automatic update from web-platform-tests
Revert "Add more descriptive error messages to TapToStopFling.html for better debugging."

This reverts commit 3a320b5899a0c450412f4a91ac38f0ca0873b415.

Reason for revert: Failing on bot
Bug: 378008882

Original change's description:
> Add more descriptive error messages to TapToStopFling.html for better debugging.
>
> Also changed file name to conform to convention.
>
> Change-Id: Ib901161728143882f0f2abdc01e79c03bdec7f6d
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6001495
> Reviewed-by: Michal Mocny <mmocny@chromium.org>
> Commit-Queue: Hao Liu <haoliuk@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#1379954}

Change-Id: Ib64f7714285384357b18c24dac44f96cc4e74025
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5999048
Auto-Submit: Tsuyoshi Horo <horo@chromium.org>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Owners-Override: Tsuyoshi Horo <horo@chromium.org>
Commit-Queue: Tsuyoshi Horo <horo@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1380147}

--

wpt-commits: b0f35fdd1d934fa57d1f98759dc10ddab29f7798
wpt-pr: 49058
This commit is contained in:
Tsuyoshi Horo 2024-11-09 09:56:42 +00:00 committed by moz-wptsync-bot
parent f2390479df
commit 0d4c061b4a

View File

@ -32,12 +32,10 @@
assert_equals(entries.length, 2, "two pointerdown entries should be received");
let entry = entries[0];
assert_equals(entry.name, 'pointerdown');
assert_equals(entry.interactionId, 0, '1st pointerdown event should have a \
0 interaction id');
assert_equals(entry.interactionId, 0);
entry = entries[1];
assert_equals(entry.name, 'pointerdown');
assert_equals(entry.interactionId, 0, '2nd pointerdown event should have a \
0 interaction id');
assert_equals(entry.interactionId, 0);
}
promise_test(async t => {