1 Test method and formmethod attributes
4 PASS form1.method is "get"
5 PASS form1.getAttribute("method") is null
8 PASS form1.method = " post "; form1.method is "get"
9 PASS form1.getAttribute("method") is " post "
10 PASS form1.setAttribute("method", "put"); form1.method is "get"
13 PASS form1.method = "Post"; form1.method is "post"
14 PASS form1.getAttribute("method") is "Post"
15 PASS form1.method = "Get"; form1.method is "get"
16 PASS form1.getAttribute("method") is "Get"
18 PASS successfullyParsed is true