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

Unified Diff: core/html/HTMLElement.idl

Issue 155973006: Roll IDL to 1750 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 years, 10 months 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 | « core/html/HTMLDocument.idl ('k') | core/html/HTMLEmbedElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « core/html/HTMLDocument.idl ('k') | core/html/HTMLEmbedElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698