Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / method-attribute-expected.txt
bloba8f8dda3dd2691c013aed615da5a14172e6bb315
1 Test method and formmethod attributes
3 Missing value default:
4 PASS form1.method is "get"
5 PASS form1.getAttribute("method") is null
7 Invalid value default:
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"
12 Valid values:
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
20 TEST COMPLETE