| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title> Testcase for bug https://bugs.webkit.org/show_bug.cgi?id=89649 </title> | 4 <title> Testcase for bug https://bugs.webkit.org/show_bug.cgi?id=89649 </title> |
| 5 <script src="../../resources/ahem.js"></script> |
| 5 <style> | 6 <style> |
| 6 .editableDiv { | 7 .editableDiv { |
| 7 overflow:auto; | 8 overflow:auto; |
| 8 height:50px; | 9 height:50px; |
| 9 width:500px; | 10 width:500px; |
| 10 word-wrap:normal; | 11 word-wrap:normal; |
| 11 font-family: 'Ahem'; | 12 font-family: 'Ahem'; |
| 12 } | 13 } |
| 13 </style> | 14 </style> |
| 14 <script src="../../resources/js-test.js"></script> | 15 <script src="../../resources/js-test.js"></script> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 </script> | 47 </script> |
| 47 </head> | 48 </head> |
| 48 <body onload="runTest();"> | 49 <body onload="runTest();"> |
| 49 <div id="test" contenteditable="true" class="editableDiv" > | 50 <div id="test" contenteditable="true" class="editableDiv" > |
| 50 SOMEFILLERTEXTSOMEFILLERTEXTSOMEFILLERFILLERSFILLERSFILLERSFILLERSFILLERS | 51 SOMEFILLERTEXTSOMEFILLERTEXTSOMEFILLERFILLERSFILLERSFILLERSFILLERSFILLERS |
| 51 </div> | 52 </div> |
| 52 <div id="description"></div> | 53 <div id="description"></div> |
| 53 <div id="console"></div> | 54 <div id="console"></div> |
| 54 </body> | 55 </body> |
| 55 </html> | 56 </html> |
| OLD | NEW |