1 <p>This is a test for
<a href=
"https://bugs.webkit.org/show_bug.cgi?id=70586">bug
70586</a>.
</p>
3 <li>Use defaultValue method to change
"value" attribute.
4 <input id=
"c1" placeholder=
"Placeholder" /><br />
6 <li>Use setAttribute method to change
"value" attribute.
7 <input id=
"c2" placeholder=
"Placeholder" /><br />
11 document
.getElementById("c1").defaultValue
= "Default";
12 document
.getElementById("c2").setAttribute("value", "Default");