Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <head> | |
| 3 | |
| 4 <script src="../../resources/testharness.js"></script> | |
| 5 <script src="../../resources/testharnessreport.js"></script> | |
| 6 <script> | |
| 7 window.onload = function() { | |
| 8 done(); | |
| 9 }; | |
| 10 </script> | |
|
kojii
2016/09/27 07:51:01
Can you explain why we need this scripts?
| |
| 11 <style> | |
| 12 @font-face { | |
| 13 font-family: Ahem; | |
| 14 src: url(../../resources/Ahem.ttf); | |
| 15 } | |
| 16 | |
| 17 div { | |
| 18 width:135px; | |
| 19 font-family:Ahem; | |
| 20 font-size:18px; | |
| 21 word-wrap:break-word; | |
| 22 word-break:break-all; | |
| 23 outline : solid 1px red; | |
|
kojii
2016/09/27 07:51:01
Please be consistent on spaces. I think we general
| |
| 24 } | |
| 25 </style> | |
| 26 </head> | |
| 27 <body> | |
| 28 <div>abcdef <span>V<span>.net</div> | |
| 29 Test passes if it does not CRASH in debug build. | |
| 30 </body> | |
| 31 </html> | |
| OLD | NEW |