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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl

Issue 2569993003: Low risk non-nullable => nullable change (Closed)
Patch Set: 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/html/HTMLTextAreaElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl
index a9d8c8ec95081f7002c5385c7a348986bda7e03c..19ac15ea67cd2d7653c45659dd21cee54c6de37f 100644
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl
@@ -53,9 +53,9 @@ interface HTMLTextAreaElement : HTMLElement {
void select();
// TODO(foolip): selectionStart and selectionEnd should be unsigned long.
- attribute long selectionStart;
- attribute long selectionEnd;
- attribute DOMString selectionDirection;
+ attribute long? selectionStart;
+ attribute long? selectionEnd;
+ attribute DOMString? selectionDirection;
[RaisesException] void setRangeText(DOMString replacement);
[RaisesException] void setRangeText(DOMString replacement,
unsigned long start,

Powered by Google App Engine
This is Rietveld 408576698