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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/selection/mouse/long-press-on-hidden-node-crash.html

Issue 2390613002: [Bugfix][Editing] Null check in SelectionController::handleGestureLongPress. (Closed)
Patch Set: modify Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/SelectionController.cpp » ('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 <html hidden id="html">
3 <script src="../../../resources/testharness.js"></script>
4 <script src="../../../resources/testharnessreport.js"></script>
5 <script>
6 test(function () {
7 assert_not_equals(window.eventSender, undefined, 'This test requires eventSe nder.');
8 var x = html.offsetLeft + 10;
9 var y = html.offsetTop + 40;
10 eventSender.gestureLongPress(x, y);
11
12 html.hidden = "";
13 });
14 </script>
15 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/SelectionController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698