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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/deleting/smart-editing-disabled-mac.html

Issue 2935693004: Rewrite editing/deleting/smart-editing-disabled-{mac,win}.html to utilize assert_selection() (Closed)
Patch Set: 2017-06-14T13:25:00 Created 3 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 internals.settings.setSmartInsertDeleteEnabled(false);
8 internals.settings.setSelectTrailingWhitespaceEnabled(true);
9 }
10 if (window.internals)
11 internals.settings.setEditingBehavior('mac');
12
13 function editingTest() {
14 var div = document.getElementById("div");
15 var sel = window.getSelection();
16
17 sel.collapse(div, 0);
18 sel.modify("move", "forward", "word");
19 sel.modify("move", "forward", "word");
20 sel.modify("extend", "backward", "word");
21 testRunner.execCommand("DeleteForward");
22 }
23
24 </script>
25 <title>Editing Test</title>
26 </head>
27 <body>
28 This test verifies that smart insert and delete can be disabled at test time.<br >
29 If viewing in a browser, you should see the words "foo bar baz".<br>
30 If using a version of testRunner with this functionality, you should see "foo b az". (two spaces between the words)<br>
31 If using a version of testRunner without this functionality, you should see "foo baz". (one space between the words)<br>
32 </div>
33 </div>
34
35 <div contenteditable="true" id="div">
36 foo bar baz
37 </div>
38
39 <script>
40 editingTest();
41 </script>
42
43 </body>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698