| Index: core/dom/Attr.idl
|
| diff --git a/core/dom/Attr.idl b/core/dom/Attr.idl
|
| index 24031706059b5f5315d8818ecdbd4fdea062933d..9c1fb6c82a50e9a111cd16f0596fe6b54c0816b2 100644
|
| --- a/core/dom/Attr.idl
|
| +++ b/core/dom/Attr.idl
|
| @@ -24,14 +24,20 @@ interface Attr : Node {
|
|
|
| [TreatReturnedNullStringAs=Null] readonly attribute DOMString name;
|
|
|
| - [DeprecateAs=AttributeSpecified] readonly attribute boolean specified;
|
| + [MeasureAs=AttributeSpecified] readonly attribute boolean specified;
|
|
|
| - [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, RaisesException=Setter, CustomElementCallbacks] attribute DOMString value;
|
| + [ImplementedAs=valueForBindings, TreatReturnedNullStringAs=Null, TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString value;
|
| + [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, DeprecateAs=AttrNodeValue, ImplementedAs=valueForBindings] attribute DOMString nodeValue;
|
| + [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, DeprecateAs=AttrTextContent, ImplementedAs=valueForBindings] attribute DOMString textContent;
|
| +
|
| + // DOM Level 2
|
| +
|
| + [DeprecateAs=AttributeOwnerElement] readonly attribute Element ownerElement;
|
|
|
| // DOM 4
|
|
|
| - [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString prefix;
|
| - [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString namespaceURI;
|
| - [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMString localName;
|
| + [TreatReturnedNullStringAs=Null] readonly attribute DOMString prefix;
|
| + [TreatReturnedNullStringAs=Null] readonly attribute DOMString namespaceURI;
|
| + [TreatReturnedNullStringAs=Null] readonly attribute DOMString localName;
|
| };
|
|
|
|
|