| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" |
| 2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | 2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
| 3 | |
| 4 <html xmlns="http://www.w3.org/1999/xhtml"> | 3 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 5 | 4 |
| 6 <head> | 5 <head> |
| 7 | 6 |
| 8 <style> | 7 <style> |
| 9 .editing { | 8 .editing { |
| 10 border: 2px solid red; | 9 border: 2px solid red; |
| 11 padding: 12px; | 10 padding: 12px; |
| 12 font-size: 24px; | 11 font-size: 24px; |
| 13 } | 12 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 35 <div contenteditable="" id="root" class="editing"> | 34 <div contenteditable="" id="root" class="editing"> |
| 36 <span id="test">foo bar baz</span> | 35 <span id="test">foo bar baz</span> |
| 37 </div> | 36 </div> |
| 38 | 37 |
| 39 <script> | 38 <script> |
| 40 runDumpAsTextEditingTest(true); | 39 runDumpAsTextEditingTest(true); |
| 41 </script> | 40 </script> |
| 42 | 41 |
| 43 </body> | 42 </body> |
| 44 </html> | 43 </html> |
| OLD | NEW |