HTML elements that inherit from node.
For the implementation purpose of inheritance testcases, HTML elements
are grouped as follows.
1. Shallow, which can not contain other html elements. (like <BR>)
2. Container, which can contain other html elements but not itself. (like <BODY>, <FORM>)
3. Recursive, which can contain itself. (like <DIV>, <SPAN>, <FONT>)
 
HTML Element Group Functionality Test Data Test Case
AREA Shallow Verify all the properties inherited by this element from NODE element. AREA element, by creating shallow node tree. areanode.html
BASE Shallow Verify all the properties inherited by this element from NODE element. BASE element, by creating shallow node tree. basnode.html
BIG Recursive Verify all the properties inherited by this element from NODE element. BIG element, FONT element, TEXT element, by creating recursive node tree. bignode.html
BODY Container Verify all the properties inherited by this element from NODE element. BODY element, FONT element, TEXT element,  by creating deep node tree. bodynode.html
BR Shallow Verify all the properties inherited by this element from NODE element. BR element, by creating shallow node tree. brnode.html
BASEFONT Shallow Verify all the properties inherited by this element from NODE element. BASEFONT element, by creating shallow node tree. bsfnode.html
BUTTON Container Verify all the properties inherited by this element from NODE element. BUTTON element, FONT element, TEXT element,  by creating deep node tree. butnode.html
COL Shallow Verify all the properties inherited by this element from NODE element. COL element, by creating shallow node tree. colnode.html
DIV Recursive Verify all the properties inherited by this element from NODE element. DIV element, BIG element, TEXT element, by creating recursive node tree. divnode.html
FORM Container Verify all the properties inherited by this element from NODE element. FORM element, BUTTON element, FONT element,  by creating deep node tree. formnode.html
FRAME Shallow Verify all the properties inherited by this element from NODE element. FRAME element, by creating shallow node tree. frmnode.html
H2 Container Verify all the properties inherited by this element from NODE element. H2 element, FONT element, TEXT element, by creating deep node tree. h2node.html
HEAD Container Verify all the properties inherited by this element from NODE element. HEAD element, FONT element, TEXT element, by creating deep node tree. headnode.html
HR Shallow Verify all the properties inherited by this element from NODE element. HR element, by creating shallow node tree. hrnode.html
IMG Shallow Verify all the properties inherited by this element from NODE element. IMG element, by creating shallow node tree. imgnode.html
INPUT Shallow Verify all the properties inherited by this element from NODE element. INPUT element, by creating shallow node tree. inpnode.html
ISINDEX Shallow Verify all the properties inherited by this element from NODE element. ISINDEX element, by creating shallow node tree. isindnode.html
LINK Shallow Verify all the properties inherited by this element from NODE element. LINK element, by creating shallow node tree. linnode.html
MAP Container Verify all the properties inherited by this element from NODE element. MAP element, AREA element, by creating deep node tree. mapnode.html
META Shallow Verify all the properties inherited by this element from NODE element. META element, by creating shallow node tree. metnode.html
PARAM Shallow Verify all the properties inherited by this element from NODE element. PARAM element, by creating shallow node tree. parnode.html
SELECT Container Verify all the properties inherited by this element from NODE element. SELECT element, OPTION element, TEXT element,  by creating deep node tree. selectnode.html
SMALL Recursive Verify all the properties inherited by this element from NODE element. SMALL element, FONT element, TEXT element,  by creating recursive node tree. smallnode.html
STRONG Container Verify all the properties inherited by this element from NODE element. STRONG element, FONT element, TEXT element,  by creating deep node tree. strongnode.html
TBODY Container Verify all the properties inherited by this element from NODE element. TBODY element, TR element, TD element, TEXT element,  by creating deep node tree. tbodynode.html
UL Recursive Verify all the properties inherited by this element from NODE element. UL element, BIG element, TEXT element,  by creating recursive node tree. ulnode.html