Add initial implementation for HTML Template & Document Fragment

https://html.spec.whatwg.org/multipage/scripting.html#the-template-element
This commit is contained in:
iska
2015-04-16 00:13:15 +02:00
parent 01adbf4437
commit 654dffcc92
9 changed files with 213 additions and 22 deletions
+16
View File
@@ -0,0 +1,16 @@
//
// HTMLTemplate.h
// HTMLKit
//
// Created by Iska on 12/04/15.
// Copyright (c) 2015 BrainCookie. All rights reserved.
//
#import "HTMLElement.h"
#import "HTMLDocumentFragment.h"
@interface HTMLTemplate : HTMLElement
@property (nonatomic, strong) HTMLDocumentFragment *content;
@end