Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / apply-style-iframe-crash.html
blobeef01573f93d8f19d8cbc02487003f8d3f077896
1 <!DOCTYPE html>
2 <h1><button><iframe></iframe></button>
3 </h1><input><iframe onload="
4 if (document.counter)
5 document.counter++;
6 else
7 document.counter = 1;
9 if (document.counter <= 16) {
10 document.designMode='on';
11 document.execCommand('selectall');
12 document.execCommand('italic');
13 }" ></iframe>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 onload = function() {
18 document.body.textContent = 'PASS; NOT CRASHED';
20 </script>