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

Unified 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698