Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-chorded-buttons.html

Issue 2249663002: Fixed & refactored mouse event firing at gesture context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Realigned test outcomes. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-chorded-buttons.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-chorded-buttons.html b/third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-chorded-buttons.html
index 16741dfb8aadd078111c99e413bc57a69b190093..cefe571ff08146c89127e306163aebed67a9c43f 100644
--- a/third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-chorded-buttons.html
+++ b/third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-chorded-buttons.html
@@ -29,7 +29,7 @@ function testReceivedEvents(expectedEvents, testLabel) {
function init() {
var targetDiv = document.getElementById("target");
- targetEvents = ["mousedown", "mouseup", "pointerdown", "pointerup", "mousemove", "pointermove"];
+ var targetEvents = ["mousedown", "mouseup", "pointerdown", "pointerup", "mousemove", "pointermove"];
targetEvents.forEach(function(eventName) {
targetDiv.addEventListener(eventName, function(event) {

Powered by Google App Engine
This is Rietveld 408576698