Chromium Code Reviews| Index: LayoutTests/fast/forms/textarea-cloned-text-match.html |
| diff --git a/LayoutTests/fast/forms/textarea-cloned-text-match.html b/LayoutTests/fast/forms/textarea-cloned-text-match.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b54bca7d844e5d1d7cd6bae1900b0bf4e887bd3e |
| --- /dev/null |
| +++ b/LayoutTests/fast/forms/textarea-cloned-text-match.html |
| @@ -0,0 +1,12 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<body> |
| +<p>Both textarea should contain same text</p> |
| +<textarea name="" id="" cols="10" rows="5">someText</textarea> |
| +<script> |
| +var textarea = document.querySelector('textarea'); |
| +var clone = textarea.cloneNode(true); |
| +document.body.appendChild(clone); |
| +</script> |
|
tkent
2015/05/19 23:47:37
Please add the following two test cases for clonin
|
| +</body> |
| +</html> |