Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(845)

Side by Side Diff: LayoutTests/fast/forms/textarea-cloned-text-match.html

Issue 1134593004: Reapply the patch r191685 with fixing the regression issue. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698