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

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: Updated patch 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>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7
8 onload = function() {
9 document.designMode="on";
tkent 2014/06/27 05:02:43 Put spaces around '='.
10 document.execCommand("SelectAll");
11 document.execCommand("RemoveFormat");
12 document.body.textContent = "PASS if Blink doesn't crash.";
13 };
14 </script>
15 </head>
16 <body>
17 <button><iframe></iframe></button>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698