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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/inputevents/before-input-order-typing-command.html

Issue 2558643003: [InputEvent] Move 'beforeinput' logic into |CompositeEditCommand::willApplyEditing()| (3/3) (Closed)
Patch Set: xiaocheng's review 3: Rebase and remove updateStyleAndLayoutIgnorePendingStylesheets() Created 4 years 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/events/inputevents/beforeinput-remove-iframe-crash.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/events/inputevents/before-input-order-typing-command.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/inputevents/before-input-order-typing-command.html b/third_party/WebKit/LayoutTests/fast/events/inputevents/before-input-order-typing-command.html
index d24eadbf57c927cbc624d0f8074de8b197b69470..73bb2a49d0d4fcafc4e324dc29f1a934797c0056 100644
--- a/third_party/WebKit/LayoutTests/fast/events/inputevents/before-input-order-typing-command.html
+++ b/third_party/WebKit/LayoutTests/fast/events/inputevents/before-input-order-typing-command.html
@@ -19,7 +19,7 @@ test(function() {
var actualEventOrder = [];
var txt = document.getElementById('txt');
eventList.forEach(function(eventType) {
- txt.addEventListener(eventType, function(event) {
+ document.addEventListener(eventType, function(event) {
actualEventOrder.push(event.type);
});
});
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/events/inputevents/beforeinput-remove-iframe-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698