OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style>#el0::first-letter, #el0:first-child { height: 100px;}</style> | 2 <style>#el0::first-letter, #el0:first-child { height: 100px;}</style> |
3 This test passes if it doesn't crash. | 3 This test passes if it doesn't crash. |
4 | 4 |
5 <div id='container' contentEditable><a><img><div id="el0" style="display: -webki
t-inline-flex"><pre>AAAAA</pre></div></a></div> | 5 <div id='container' contentEditable><a><img><div id="el0" style="display: inline
-flex"><pre>AAAAA</pre></div></a></div> |
6 <script> | 6 <script> |
7 if (window.testRunner) | 7 if (window.testRunner) |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 | 9 |
10 window.getSelection().selectAllChildren(document.getElementById('container')); | 10 window.getSelection().selectAllChildren(document.getElementById('container')); |
11 document.execCommand('FormatBlock', false, '<h5>'); | 11 document.execCommand('FormatBlock', false, '<h5>'); |
12 </script> | 12 </script> |
OLD | NEW |