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

Unified Diff: Source/core/dom/Element.idl

Issue 1145233003: Make Attr.localName/name and Element.localName/tagName not nullable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 | « Source/core/dom/Attr.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Element.idl
diff --git a/Source/core/dom/Element.idl b/Source/core/dom/Element.idl
index e16fbb87d0d3278386f13f82c09e9679e4207408..ecb8c4a32d91392a8a90892fb78be915839b9fe1 100644
--- a/Source/core/dom/Element.idl
+++ b/Source/core/dom/Element.idl
@@ -25,9 +25,8 @@
] interface Element : Node {
readonly attribute DOMString? namespaceURI;
readonly attribute DOMString? prefix;
- // FIXME: localName/tagName should not be nullable.
- readonly attribute DOMString? localName;
- readonly attribute DOMString? tagName;
+ readonly attribute DOMString localName;
+ readonly attribute DOMString tagName;
[Reflect, ExposeJSAccessors] attribute DOMString id;
[Reflect=class] attribute DOMString className;
« no previous file with comments | « Source/core/dom/Attr.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698