summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/method-attribute-expected.txt
blob: a8f8dda3dd2691c013aed615da5a14172e6bb315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Test method and formmethod attributes

Missing value default:
PASS form1.method is "get"
PASS form1.getAttribute("method") is null

Invalid value default:
PASS form1.method = " post "; form1.method is "get"
PASS form1.getAttribute("method") is " post "
PASS form1.setAttribute("method", "put"); form1.method is "get"

Valid values:
PASS form1.method = "Post"; form1.method is "post"
PASS form1.getAttribute("method") is "Post"
PASS form1.method = "Get"; form1.method is "get"
PASS form1.getAttribute("method") is "Get"

PASS successfullyParsed is true

TEST COMPLETE