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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-div-in-anchor-and-img-crash.html

Issue 2738503004: Search the entire subtree when looking for the end of an inline continuation chain. (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <span><a href="#" id="start"><div></div></a></span>
3 <img style="display:block;">
4
5 <script src="../../resources/testharness.js"></script>
6 <script src="../../resources/testharnessreport.js"></script>
7 <script>
8 test(() => {
9 assert_true(!!window.testRunner);
10 testRunner.overridePreference("WebKitTabToLinksPreferenceKey", 1);
11 testRunner.overridePreference("WebKitSpatialNavigationEnabled", 1);
12 document.getElementById("start").focus();
13 eventSender.keyDown("ArrowDown");
14 }, "No crash or assertion failure");
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698