1 Test to see if setting the value attribute updates the value.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS input.setAttribute("value", "10"); input.value is "10"
7 rewriting the value attribute should update the value
8 PASS input.setAttribute("value", "20"); input.value is "20"
9 changing the max should effect value
10 PASS input.setAttribute("max", "10"); input.value is "10"
11 value attribute should not change the value after you set a value
12 PASS input.value = 10; input.setAttribute("value", "5"); input.value is "10"
13 PASS successfullyParsed is true