OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <body> | |
4 <p>Testing cloneNode(true) on textarea element works correctly</p> | |
5 <p>Before clone</p> | |
6 <textarea cols="15" rows="2">InitialText</textarea> | |
7 <textarea cols="15" rows="2">InsertedText InitialText</textarea> | |
8 <textarea cols="15" rows="2">NewText</textarea> | |
9 <p>After clone</p> | |
10 <textarea cols="15" rows="2">InitialText</textarea> | |
tkent
2015/06/05 03:01:26
should remove end-of-line characters between texta
| |
11 <textarea cols="15" rows="2">InsertedText InitialText</textarea> | |
12 <textarea cols="15" rows="2">NewText</textarea> | |
13 </body> | |
14 </html> | |
OLD | NEW |