Add HTML5 Lib Tree Construction tests

https://github.com/html5lib/html5lib-tests
This commit is contained in:
iska
2015-04-11 00:51:37 +02:00
parent 067e8c7cc7
commit 0ac909fb66
5 changed files with 535 additions and 5 deletions
@@ -0,0 +1,23 @@
//
// HTML5LibTreeConstructionTest.h
// HTMLKit
//
// Created by Iska on 25/03/15.
// Copyright (c) 2015 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
@class HTMLElement;
@interface HTML5LibTreeConstructionTest : NSObject
@property (nonatomic, copy) NSString *testFile;
@property (nonatomic, copy) NSString *data;
@property (nonatomic, strong) NSArray *errors;
@property (nonatomic, strong) HTMLElement *documentFragment;
@property (nonatomic, strong) NSArray *nodes;
+ (NSDictionary *)loadHTML5LibTreeConstructionTests;
@end