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

Side by Side Diff: LayoutTests/fast/dom/shadow/focus-navigation-tabstop-crash.html

Issue 1144953007: Remove tabStop feature (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 6 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 <script src="../../../resources/js-test.js"></script>
3 <p>crbug.com/463486 when tab navigation skips a node with tabStop=false to chrom e, crash happens</p>
4 <input id="first"><input id="second">
5 <pre id="console"></pre>
6 <script>
7 if (!window.eventSender)
8 testFailed('');
9
10 document.querySelector('#first').focus();
11 document.querySelector('#second').tabStop = false;
12 eventSender.keyDown('\t');
13
14 debug('Test finished.');
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698