Index: third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html |
diff --git a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html |
index 4ffc872e21753c238545ee104c19e80c75c3ce5d..237c2d91f560e0f7c4da4d153884195e998d2572 100644 |
--- a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html |
+++ b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-execcommand.html |
@@ -84,7 +84,8 @@ test(function() { |
testExecCommandInputType('copy', null, NO_INPUT_EVENT_FIRED); |
// Cut/Paste should fire 'input'. |
testExecCommandInputType('cut', null, 'deleteByCut'); |
- testExecCommandInputType('paste', null, 'insertFromPaste'); |
+ // TODO(chongz): JS triggered paste shouldn't fire 'beforeinput'. |
+ // testExecCommandInputType('paste', null, 'insertFromPaste'); |
}, 'Testing input with execCommand'); |
</script> |
</body> |