Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <body> | |
| 4 <p>Both textarea should contain same text</p> | |
| 5 <textarea name="" id="" cols="10" rows="5">someText</textarea> | |
| 6 <script> | |
| 7 var textarea = document.querySelector('textarea'); | |
| 8 var clone = textarea.cloneNode(true); | |
| 9 document.body.appendChild(clone); | |
| 10 </script> | |
|
tkent
2015/05/19 23:47:37
Please add the following two test cases for clonin
| |
| 11 </body> | |
| 12 </html> | |
| OLD | NEW |