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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/pasteboard/5075944.html

Issue 2621213002: Convert editing/pasteboard/5075944.html with assert_selection (Closed)
Patch Set: Add availability check of test runner Created 3 years, 11 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/LayoutTests/editing/pasteboard/copy-paste-underlined.html » ('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 <p>This test for a bug copy/pasting underlined text.</p>
2 <div id="copy" contenteditable="true">This should be underlined.</div>
3 <div id="paste" contenteditable="true"><br></div>
4
5 <script>
6 var copy = document.getElementById("copy");
7 copy.focus();
8 document.execCommand("SelectAll");
9 document.execCommand("Underline");
10 document.execCommand("Copy");
11 var paste = document.getElementById("paste");
12 paste.focus();
13 document.execCommand("Paste");
14 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/pasteboard/copy-paste-underlined.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698