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

Unified Diff: third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_contenteditable.html

Issue 2787893004: Fixing select all for contenteditable (Closed)
Patch Set: rebase Created 3 years, 8 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: third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_contenteditable.html
diff --git a/third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_contenteditable.html b/third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_contenteditable.html
index 277bb5fcef9045114ee9bf4759db30132b8368ef..8a37d0ba337db02bb574595c41bd264bbdea2b2c 100644
--- a/third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_contenteditable.html
+++ b/third_party/WebKit/LayoutTests/editing/selection/select_all/select_all_contenteditable.html
@@ -6,10 +6,10 @@
test(function() {
var div = document.getElementById('div');
div.focus();
- assert_true(document.queryCommandEnabled('SelectAll'));
+ assert_false(document.queryCommandEnabled('SelectAll'));
div.appendChild(document.createTextNode('x'));
div.focus();
assert_true(document.queryCommandEnabled('SelectAll'));
-}, 'SelectAll is always enabled for contenteditable');
+}, 'SelectAll is not enabled if contenteditable is empty');
</script>

Powered by Google App Engine
This is Rietveld 408576698