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

Side by Side Diff: LayoutTests/editing/execCommand/remove-format-iframe-in-button.html

Issue 342483002: The length of a TextIterator containing replaced element is at least 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix dummy whitespace issue. Created 6 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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5
6 function runTest() {
7 if (window.testRunner)
8 testRunner.dumpAsText();
9
10 document.designMode="on";
11 document.execCommand("SelectAll");
12 document.execCommand("RemoveFormat");
13 Markup.dump("test");
yosin_UTC9 2014/06/26 08:49:11 Just document.body.textContent = 'PASS if Blink do
14 }
15 </script>
16 </head>
17 <body onload="runTest()">
18 <script type="text/javascript" src="../../resources/dump-as-markup.js"></scr ipt>
19 <button id="test">
20 <iframe></iframe>
21 </button>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698