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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/uievents/mouse/mouseevent_move_button-manual.html

Issue 2840023002: Fix button event on mouse events. (Closed)
Patch Set: Fix button event on mouse events. Created 3 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt_automation/pointerevents/pointerevent_common_input.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/uievents/mouse/mouseevent_move_button-manual.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/uievents/mouse/mouseevent_move_button-manual.html b/third_party/WebKit/LayoutTests/external/wpt/uievents/mouse/mouseevent_move_button-manual.html
new file mode 100644
index 0000000000000000000000000000000000000000..78478103d88545476ff986b298d38b532a94eb0f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/uievents/mouse/mouseevent_move_button-manual.html
@@ -0,0 +1,86 @@
+<!doctype html>
+<html>
+ <head>
+ <title>Mouse Events with button depressed</title>
+ <meta name="viewport" content="width=device-width">
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ <style>
+ div.box {
+ border: 2px solid lightgray;
+ margin: 25px;
+ padding: 25px;
+ float: left;
+ }
+ #lightyellow {
+ background-color: lightyellow;
+ }
+ #lightblue {
+ background-color: lightblue;
+ }
+ #lightgreen {
+ background-color: lightgreen;
+ }
+ </style>
+ </head>
+ <body onload="run()">
+ <h2>Mouse Events</h2>
+ <h4>Test Description: This test checks if mouse events set button property correctly
+ <ol>
+ <li>Put your mouse over the green rectangle</li>
+ <li>Press a non-primary button and hold it</li>
+ <li>Drag mouse to blue rectangle</li>
+ <li>Release mouse button</li>
+ </ol>
+ </h4>
+ <div class="box" id="lightyellow">
+ <div class="box" id="lightgreen"></div>
+ <div class="box" id="lightblue"></div>
+ </div>
+ <script>
+ var test = async_test("mouse events fired without button state");
+
+ var button = -1;
+
+ function run() {
+ var lightgreen = document.getElementById("lightgreen");
+ var lightyellow = document.getElementById("lightyellow");
+ var lightblue = document.getElementById("lightblue");
+
+ on_event(lightgreen, "contextmenu", function (event) {
+ event.preventDefault();
+ });
+
+ on_event(lightgreen, "mousedown", function (event) {
+ test.step(function() {assert_true(button === -1, "There must only be one mouse down event.");});
+ test.step(function() {assert_true(event.button != 0, "Must not be primary button.");});
+ button = event.button;
+ });
+ on_event(lightyellow, "click", function (event) {
+ test.step(function() {assert_true(event.button === button, "Button must be the same as mousedown.");});
+ });
+ on_event(lightyellow, "mousemove", function (event) {
+ if (button != -1) {
+ test.step(function() {assert_true(event.button === 0, "Button must be un-initialized for mousemove.");});
+ }
+ });
+ on_event(lightgreen, "mouseleave", function (event) {
+ if (button != -1) {
+ test.step(function() {assert_true(event.button === 0, "Button must be un-initialized for mouseleave.");});
+ }
+ });
+ on_event(lightblue, "mouseenter", function (event) {
+ if (button != -1) {
+ test.step(function() {assert_true(event.button === 0, "Button must be un-initialized for mouseenter.");});
+ }
+ });
+ on_event(lightblue, "mouseup", function (event) {
+ if (button != -1) {
+ test.step(function() {assert_true(event.button === button, "Button must be the same as mousedown.");});
+ test.done();
+ }
+ });
+ }
+ </script>
+ </body>
+</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt_automation/pointerevents/pointerevent_common_input.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698