OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <p>Testing cloneNode(true) on textarea element works correctly</p> | 4 <p>Testing cloneNode(true) on textarea element works correctly</p> |
5 <p>Before clone</p> | 5 <p>Before clone</p> |
6 <textarea cols="15" rows="2">InitialText</textarea> | 6 <textarea cols="15" rows="2">InitialText</textarea> |
7 <textarea cols="15" rows="2">InsertedText InitialText</textarea> | 7 <textarea cols="15" rows="2">InsertedText InitialText</textarea> |
8 <textarea cols="15" rows="2">NewText</textarea> | 8 <textarea cols="15" rows="2">NewText</textarea> |
9 <p>After clone</p> | 9 <p>After clone</p> |
10 <textarea cols="15" rows="2">InitialText | 10 <textarea cols="15" rows="2">InitialText |
11 </textarea><textarea cols="15" rows="2">InsertedText | 11 </textarea><textarea cols="15" rows="2">InsertedText |
12 InitialText</textarea><textarea cols="15" rows="2">NewText | 12 InitialText</textarea><textarea cols="15" rows="2">NewText |
13 </textarea> | 13 </textarea> |
14 </body> | 14 </body> |
15 </html> | 15 </html> |
OLD | NEW |