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

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: move some code to SVGElement 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
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 elemnt.');
pdr. 2013/07/29 00:17:47 elemnt -> element
tkent 2013/07/29 03:31:07 Done.
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

Powered by Google App Engine
This is Rietveld 408576698