Add source code documentation for all HTML Node subclasses

This commit is contained in:
iska
2015-12-20 23:35:34 +01:00
parent fd965e014d
commit 7a1bb21b33
9 changed files with 294 additions and 8 deletions
+10
View File
@@ -11,8 +11,18 @@
NS_ASSUME_NONNULL_BEGIN
/**
A HTML Template node.
https://html.spec.whatwg.org/multipage/scripting.html#the-template-element
*/
@interface HTMLTemplate : HTMLElement
/**
The content of the template.
@see HTMLDocumentFragment
*/
@property (nonatomic, strong) HTMLDocumentFragment *content;
@end