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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-selection-preservation.html

Issue 2733783003: TEXTAREA element: Updating child nodes without updating textContent should do nothing (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-selection-preservation-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-selection-preservation.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-selection-preservation.html b/third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-selection-preservation.html
index fb04acd5d83aa279ef634fec7e3a4267c7ed4b73..699a99842569a514117bd7df94a64055a821dcc7 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-selection-preservation.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-selection-preservation.html
@@ -68,8 +68,8 @@
debug("- append a empty text node");
ta.setSelectionRange(2, 3);
ta.appendChild(document.createTextNode(''));
- shouldBe('ta.selectionStart', '12');
- shouldBe('ta.selectionEnd', '12');
+ shouldBe('ta.selectionStart', '2');
+ shouldBe('ta.selectionEnd', '3');
</script>
</body>
</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-selection-preservation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698