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

Unified Diff: third_party/WebKit/Source/core/events/InputEvent.idl

Issue 2570203004: Fix low risk nullable => non nullable change for NavigatorLanguage.language (Closed)
Patch Set: Added web platfom test for InputEvent 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
Index: third_party/WebKit/Source/core/events/InputEvent.idl
diff --git a/third_party/WebKit/Source/core/events/InputEvent.idl b/third_party/WebKit/Source/core/events/InputEvent.idl
index 4fc702ca4b184facb7eb3ec62910834ef261f671..1619f870824450cf0868e9c3d41353a158d98fd9 100644
--- a/third_party/WebKit/Source/core/events/InputEvent.idl
+++ b/third_party/WebKit/Source/core/events/InputEvent.idl
@@ -11,7 +11,7 @@
RuntimeEnabled=InputEvent,
] interface InputEvent : UIEvent {
readonly attribute DOMString inputType;
- readonly attribute DOMString? data;
+ readonly attribute DOMString data;
readonly attribute DataTransfer? dataTransfer;
readonly attribute boolean isComposing;
sequence<StaticRange> getTargetRanges();

Powered by Google App Engine
This is Rietveld 408576698