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

Side by Side Diff: LayoutTests/editing/inserting/replace-in-paragraph-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
OLDNEW
(Empty)
1 <script>
2 function $(id) { return document.getElementById(id); }
3
4 function testIt()
5 {
6 description('Replace in pargraph by paragraph');
7
8 var selection = window.getSelection();
9 var range = document.createRange();
10 range.selectNodeContents($('destination'));
11 selection.addRange(range);
12 document.execCommand('insertHTML', false, '<p>source</p>');
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 <p contenteditable="true" id="destination">destination</p>
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

Powered by Google App Engine
This is Rietveld 408576698