Fix radio input test in Chrome

It seems like the `form="pluto"` was throwing it off and making the input live outside the form it should have been contained in, causing it to uncheck A. I added it intending to test the form attribute but ended up not needing it so removing it should be fine. (The tests were passing in phantomjs since it doesn't support the `form` attribute and simply ignored it.)

Test Plan:
grunt test; grunt test --debug
This commit is contained in:
Ben Alpert
2013-09-09 23:38:05 -07:00
parent aa765e8fa3
commit 3bbd966a82
@@ -61,8 +61,7 @@ describe('ReactDOMInput', function() {
<input ref="b" type="radio" name="fruit" />B
<form>
<input ref="c" type="radio" name="fruit" form="pluto"
defaultChecked={true} />
<input ref="c" type="radio" name="fruit" defaultChecked={true} />
</form>
</div>
);