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

Side by Side Diff: LayoutTests/editing/inserting/replace-in-heading-001.html

Issue 16001010: Make replacing selection in heading/paragraph with heading/paragraph to work (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-06-11T17:06 Created 7 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
« no previous file with comments | « no previous file | LayoutTests/editing/inserting/replace-in-heading-001-expected.txt » ('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 <script>
2 function $(id) { return document.getElementById(id); }
3
4 function testIt()
5 {
6 description('Replace in heading by heading');
7
8 var selection = window.getSelection();
9 var range = document.createRange();
10 range.selectNodeContents($('destination'));
11 selection.addRange(range);
12 document.execCommand('insertHTML', false, '<h2>source</h2>');
13 shouldBeEqualToString('$("destination").textContent', 'source');
14
15 if (window.testRunner)
16 $('content').outerHTML = '';
17 }
18 </script>
19 </head>
20 <body>
21 <div id="content">
22 <p id="description"></p>
23 <h1 contenteditable="true" id="destination">destination</h1>
24 </div>
25 <div id="console"></div>
26 <script src="../../fast/js/resources/js-test-pre.js"></script>
27 <script>
28 testIt();
29 </script>
30 <script src="../../fast/js/resources/js-test-post.js"></script>
31 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/inserting/replace-in-heading-001-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698