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

Side by Side Diff: LayoutTests/editing/execCommand/apply-style-iframe-crash.html

Issue 73873002: Fix typo in LayoutTests/editing/execCommand/apply-style-iframe-crash.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <h1><button><iframe></iframe></button> 2 <h1><button><iframe></iframe></button>
3 </h1><input><iframe xonload=" 3 </h1><input><iframe onload="
4 if (document.counter) 4 if (document.counter)
5 document.counter++; 5 document.counter++;
6 else 6 else
7 document.counter = 1; 7 document.counter = 1;
8 8
9 if (document.counter <= 16) { 9 if (document.counter <= 16) {
10 document.designMode='on'; 10 document.designMode='on';
11 document.execCommand('selectall'); 11 document.execCommand('selectall');
12 document.execCommand('italic'); 12 document.execCommand('italic');
13 }" ></iframe> 13 }" ></iframe>
14 <script> 14 <script>
15 if (window.testRunner) 15 if (window.testRunner)
16 testRunner.dumpAsText(); 16 testRunner.dumpAsText();
17 onload = function() { 17 onload = function() {
18 document.body.textContent = 'PASS; NOT CRASHED'; 18 document.body.textContent = 'PASS; NOT CRASHED';
19 }; 19 };
20 </script> 20 </script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698