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

Side by Side Diff: LayoutTests/fast/events/focus-click-on-non-mouse-focusable-element.html

Issue 20670002: REGRESSION: Click on focused link should not remove focus on it. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: typo Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/events/focus-click-on-non-mouse-focusable-element-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <body>
3 <a href="#foo" onclick="return false;">link</a>
4 <input>
5 <script src="../js/resources/js-test-pre.js"></script>
6 <script>
7 description('Click on a focused anchor element should not change focus, and clic k on a non-focused anchor element should remove focus of another element.');
8 jsTestIsAsync = true;
9 var a = document.querySelector('a');
10 var input = document.querySelector('input');
11 window.onload = function() {
12 a.focus();
13 shouldBe('document.activeElement', 'a', true);
14 eventSender.mouseMoveTo(a.offsetLeft + a.offsetWidth / 2, a.offsetTop + a.of fsetHeight / 2);
15 eventSender.mouseDown();
16 eventSender.mouseUp();
17 shouldBe('document.activeElement', 'a');
18
19 input.focus();
20 eventSender.mouseDown();
21 eventSender.mouseUp();
22 shouldBe('document.activeElement', 'document.body');
23
24 finishJSTest();
25 };
26 </script>
27 <script src="../js/resources/js-test-post.js"></script>
28 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/events/focus-click-on-non-mouse-focusable-element-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698