Index: core/html/HTMLElement.idl |
diff --git a/core/html/HTMLElement.idl b/core/html/HTMLElement.idl |
index c5640d52982da6f35070c4f8f789033ceb94cef9..5d065681ee8142f6709b2c093d1c1f033c8d5541 100644 |
--- a/core/html/HTMLElement.idl |
+++ b/core/html/HTMLElement.idl |
@@ -19,33 +19,31 @@ |
*/ |
[ |
- CustomToV8 |
+ Custom=Wrap, |
] 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, SetterRaisesException] attribute DOMString innerText; |
- [TreatNullAs=NullString, CustomElementCallbacks, SetterRaisesException] attribute DOMString outerText; |
+ [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, MeasureAs=HTMLElementInnerText] attribute DOMString innerText; |
+ [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, MeasureAs=HTMLElementOuterText] attribute DOMString outerText; |
[RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] Element insertAdjacentElement([Default=Undefined] optional DOMString where, |
[Default=Undefined] optional Element element); |
- [CustomElementCallbacks, RaisesException] void insertAdjacentHTML([Default=Undefined] optional DOMString where, |
- [Default=Undefined] optional DOMString html); |
[RaisesException, MeasureAs=InsertAdjacentText] void insertAdjacentText([Default=Undefined] optional DOMString where, |
[Default=Undefined] optional DOMString text); |
[RuntimeEnabled=IMEAPI] readonly attribute InputMethodContext inputMethodContext; |
- [TreatNullAs=NullString, CustomElementCallbacks, SetterRaisesException] attribute DOMString contentEditable; |
+ [CustomElementCallbacks, RaisesException=Setter] attribute DOMString contentEditable; |
readonly attribute boolean isContentEditable; |
attribute boolean spellcheck; |