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

Unified Diff: LayoutTests/editing/execCommand/overtype-support.html

Issue 1097693003: queryCommandSupported() should return 'true' for cut/copy/paste editing commands (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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: LayoutTests/editing/execCommand/overtype-support.html
diff --git a/LayoutTests/editing/execCommand/overtype-support.html b/LayoutTests/editing/execCommand/overtype-support.html
index 8f27d80d9f37549fa907a28024b1e65474e31a3f..05eba988895cb171a8b23dbd31d1cc0b811021ee 100644
--- a/LayoutTests/editing/execCommand/overtype-support.html
+++ b/LayoutTests/editing/execCommand/overtype-support.html
@@ -6,7 +6,7 @@
<script>
description('This test checks that the Overwrite mode is: 1) not exposed to JavaScript 2) queryCommandState returns false.');
-shouldBeFalse("document.queryCommandSupported('OverWrite')");
+shouldBeTrue("document.queryCommandSupported('OverWrite')");
shouldBeFalse("document.queryCommandState('OverWrite')");
var successfullyParsed = true;

Powered by Google App Engine
This is Rietveld 408576698