Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script> | |
| 5 if (window.testRunner) | |
| 6 testRunner.dumpAsText(); | |
| 7 | |
| 8 onload = function(){ | |
|
Yuta Kitamura
2014/06/18 08:08:11
Space required before the brace.
yosin_UTC9
2014/06/19 07:36:56
Done.
| |
| 9 document.execCommand('SelectAll') | |
|
Yuta Kitamura
2014/06/18 08:08:11
Bad indentation.
yosin_UTC9
2014/06/19 07:36:57
Done.
| |
| 10 span = document.getElementsByTagName('span')[0]; | |
| 11 span.contentEditable = 'true'; | |
| 12 span.textContent = 'bar'; | |
| 13 document.execCommand('InsertText', false, '1'); | |
| 14 document.body.textContent = 'PASS if Blink doesn\'t crash.'; | |
| 15 }; | |
| 16 </script> | |
| 17 <style> | |
| 18 * { visibility:visible; } | |
| 19 .inline { display:inline; } | |
| 20 *:only-child { visibility:hidden; } | |
| 21 </style> | |
| 22 </head> | |
| 23 <body> | |
| 24 <table> | |
| 25 <tbody> | |
|
Yuta Kitamura
2014/06/18 08:08:11
Indentation is not necessary here.
If you need th
yosin_UTC9
2014/06/19 07:36:56
Done.
| |
| 26 <tr> | |
| 27 <td> | |
| 28 <span> | |
| 29 <table></table><span></span> | |
| 30 </span> | |
| 31 </td> | |
| 32 </tr> | |
| 33 <tr> | |
| 34 <td> | |
| 35 <td class="inline"> | |
| 36 foo | |
| 37 </tr> | |
| 38 </tbody> | |
|
Yuta Kitamura
2014/06/18 08:08:11
This test case is very hard to understand...
It w
yosin_UTC9
2014/06/19 07:36:56
Done.
| |
| 39 </body> | |
|
Yuta Kitamura
2014/06/18 08:08:11
No close tag of <table>?
yosin_UTC9
2014/06/19 07:36:56
Done.
| |
| 40 </html> | |
| OLD | NEW |