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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/update-hover-when-mouse-press.html

Issue 2965603002: Update hover states when dragging the mouse into an element (Closed)
Patch Set: hover drag Created 3 years, 5 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/update-hover-when-mouse-press.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/update-hover-when-mouse-press.html b/third_party/WebKit/LayoutTests/fast/events/update-hover-when-mouse-press.html
new file mode 100644
index 0000000000000000000000000000000000000000..b512500069de71bafc395a8d448699c2ed398511
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/events/update-hover-when-mouse-press.html
@@ -0,0 +1,70 @@
+<!DOCTYPE html>
+<script src='../../resources/testharness.js'></script>
+<script src='../../resources/testharnessreport.js'></script>
+<style type="text/css">
+.box:hover{background-color: rgb(0, 255, 255);}
+.box:active{background-color: rgb(0, 0, 255);}
+.box:active:hover{background-color: rgb(255, 255, 0);}
+
+.box{border:2px solid #aaa; width:100px; height:100px;}
+</style>
+
+<body>
+<div class="box" id="upbox"></div>
+<div class="box" id="downbox"></div>
+
+<script type="text/javascript">
+var mouseover = false;
+var mousedown = false;
+var upbox = document.getElementById("upbox");
+var downbox = document.getElementById("downbox");
+var targetRect = downbox.getBoundingClientRect();
+var offset = 20;
+var x1 = targetRect.left + offset;
+var y1 = targetRect.top + offset;
+targetRect = upbox.getBoundingClientRect();
+var x2 = targetRect.left + offset;
+var y2 = targetRect.top + offset;
+
+
+function mouseDownHandler(event) {
+ mouseHoverActive = true;
+ testHover.step(function () {
+ assert_equals(event.target.id, "downbox");
+ assert_equals(getComputedStyle(event.target).backgroundColor, "rgb(255, 255, 0)");
+ });
+}
+
+function mouseOverHandler(event) {
+ mouseHover = true;
+ testHover.step(function () {
+ assert_true(mouseHoverActive);
+ assert_true(mouseHover);
+ assert_equals(event.target.id, "upbox");
+ assert_equals(getComputedStyle(upbox).backgroundColor, "rgb(0, 255, 255)");
+ assert_equals(getComputedStyle(downbox).backgroundColor, "rgb(0, 0, 255)");
+ testHover.done();
+ });
+}
+
+function testHoverMousePress() {
+ if (window.chrome && chrome.gpuBenchmarking) {
+ var pointerActions =
+ [{source: "mouse",
+ actions: [
+ { name: "pointerMove", x: x1, y: y1 },
+ { name: "pointerDown", x: x1, y: y1, button: 'left'},
+ { name: "pointerMove", x: x2, y: y2, button: 'left' }]}];
+ chrome.gpuBenchmarking.pointerActionSequence(pointerActions);
+ }
+}
+
+var testHover = async_test('Test that we update the hover states when we move the mouse to the element while the left button is pressed.');
+upbox.addEventListener('mouseover', mouseOverHandler);
+downbox.addEventListener('mousedown', mouseDownHandler);
+testHoverMousePress();
+
+</script>
+</body>
+
+

Powered by Google App Engine
This is Rietveld 408576698