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

Unified Diff: Source/core/html/HTMLElement.idl

Issue 102763002: Remove TreatNullAs=NullString for HTMLElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | « LayoutTests/fast/dom/element-attribute-js-null-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLElement.idl
diff --git a/Source/core/html/HTMLElement.idl b/Source/core/html/HTMLElement.idl
index e20b341c38825a945d6a26d288697dd25a6d8fe8..54acf8109882fdd08a9d2bd80ebb966ceb4b06be 100644
--- a/Source/core/html/HTMLElement.idl
+++ b/Source/core/html/HTMLElement.idl
@@ -21,16 +21,16 @@
[
CustomWrap,
] interface HTMLElement : Element {
- [Reflect, TreatNullAs=NullString] attribute DOMString title;
- [Reflect, TreatNullAs=NullString] attribute DOMString lang;
- attribute boolean translate;
- [Reflect, TreatNullAs=NullString] attribute DOMString dir;
+ [Reflect] attribute DOMString title;
+ [Reflect] attribute DOMString lang;
+ attribute boolean translate;
+ [Reflect] attribute DOMString dir;
[CustomElementCallbacks] attribute long tabIndex;
[CustomElementCallbacks] attribute boolean draggable;
[Reflect, TreatNullAs=NullString] attribute DOMString webkitdropzone;
[Reflect] attribute boolean hidden;
- [Reflect, TreatNullAs=NullString] attribute DOMString accessKey;
+ [Reflect] attribute DOMString accessKey;
// Extensions
[TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter] attribute DOMString innerText;
@@ -45,7 +45,7 @@
[RuntimeEnabled=IMEAPI] readonly attribute InputMethodContext inputMethodContext;
- [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter] attribute DOMString contentEditable;
+ [CustomElementCallbacks, RaisesException=Setter] attribute DOMString contentEditable;
readonly attribute boolean isContentEditable;
attribute boolean spellcheck;
« no previous file with comments | « LayoutTests/fast/dom/element-attribute-js-null-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698