Index: Source/core/dom/Attr.idl |
diff --git a/Source/core/dom/Attr.idl b/Source/core/dom/Attr.idl |
index c5075bae7138a09e2487cacdf6fb6f787718f294..7aafbbca683b8b211eb5501bcebfcd2a0824aedc 100644 |
--- a/Source/core/dom/Attr.idl |
+++ b/Source/core/dom/Attr.idl |
@@ -24,9 +24,9 @@ |
interface Attr : Node { |
readonly attribute DOMString? namespaceURI; |
readonly attribute DOMString? prefix; |
- // FIXME: localName/name/value/nodeValue/textContent should not be nullable. |
- readonly attribute DOMString? localName; |
- readonly attribute DOMString? name; |
+ readonly attribute DOMString localName; |
+ readonly attribute DOMString name; |
+ // FIXME: value/nodeValue/textContent should not be nullable. |
[ImplementedAs=valueForBindings, CustomElementCallbacks] attribute DOMString? value; |
[ImplementedAs=valueForBindings, MeasureAs=AttrNodeValue] attribute DOMString? nodeValue; // legacy alias of .value |
[ImplementedAs=valueForBindings, MeasureAs=AttrTextContent] attribute DOMString? textContent; // legacy alias of .value |