Skip to content

Commit

Permalink
Add more descriptive error messages to TapToStopFling.html for better…
Browse files Browse the repository at this point in the history
… 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 <[email protected]>
Commit-Queue: Hao Liu <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1379954}
  • Loading branch information
haoliuk authored and chromium-wpt-export-bot committed Nov 7, 2024
1 parent 2c00867 commit 623073a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@
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);
assert_equals(entry.interactionId, 0, '1st pointerdown event should have a \
0 interaction id');
entry = entries[1];
assert_equals(entry.name, 'pointerdown');
assert_equals(entry.interactionId, 0);
assert_equals(entry.interactionId, 0, '2nd pointerdown event should have a \
0 interaction id');
}

promise_test(async t => {
Expand Down

0 comments on commit 623073a

Please sign in to comment.