OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 | 2 |
3 <style> | 3 <style> |
4 .fixed::before { | 4 .fixed::before { |
5 position:fixed; | 5 position:fixed; |
6 } | 6 } |
7 </style> | 7 </style> |
8 | 8 |
9 <script> | 9 <script> |
10 if (window.testRunner) window.testRunner.dumpAsText(); | 10 if (window.testRunner) window.testRunner.dumpAsText(); |
11 onload = function(){ | 11 onload = function(){ |
12 document.designMode = "on"; | 12 document.designMode = "on"; |
13 document.execCommand("SelectAll"); | 13 document.execCommand("SelectAll"); |
14 document.execCommand("Indent", false); | 14 document.execCommand("Indent", false); |
15 } | 15 } |
16 </script> | 16 </script> |
17 | 17 |
18 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=93750">93750</a>: Render
Quote corrupts doubly linked list on insertion before head of list</p> | 18 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=93750">93750</a>: Render
Quote corrupts doubly linked list on insertion before head of list</p> |
19 <p>It passes if it does not CRASH or ASSERT.</p> | 19 <p>It passes if it does not CRASH or ASSERT.</p> |
20 | 20 |
21 <q class="fixed"></q> | 21 <q class="fixed"></q> |
OLD | NEW |