r3593 committed - Button visual test: start with a radio in each set already checked.

r3593 committed - Button visual test: start with a radio in each set already checked.

Revision: 3593
Author: scott.gonzalez
Date: Sat Jan 2 15:47:44 2010
Log: Button visual test: start with a radio in each set already checked.
http://code.google.com/p/jquery-ui/source/detail?r=3593
Modified:
/branches/dev/tests/visual/button/default.html
=======================================
--- /branches/dev/tests/visual/button/default.html    Sat Jan 2 15:38:44 2010
+++ /branches/dev/tests/visual/button/default.html    Sat Jan 2 15:47:44 2010
@@ -68,14 +68,14 @@
</div>
<div id="radio0" style="margin-top: 2em;">
-    <input type="radio" id="radio01" name="radio" /><label
for="radio01">Choice 1</label>
+    <input type="radio" id="radio01" name="radio" checked="checked" /><label
for="radio01">Choice 1</label>
    <input type="radio" id="radio02" name="radio" /><label
for="radio02">Choice 2</label>
    <input type="radio" id="radio03" name="radio" /><label
for="radio03">Choice 3</label>
</div>
<form>
    <div id="radio1" style="margin-top: 2em;">
        <input type="radio" id="radio11" name="radio" /><label
for="radio11">Choice 1</label>
-        <input type="radio" id="radio12" name="radio" /><label
for="radio12">Choice 2</label>
+        <input type="radio" id="radio12" name="radio" checked="checked" /><label
for="radio12">Choice 2</label>
        <input type="radio" id="radio13" name="radio" /><label
for="radio13">Choice 3</label>
    </div>
</form>
@@ -83,7 +83,7 @@
    <div id="radio2" style="margin-top: 2em;">
        <input type="radio" id="radio21" name="radio" /><label
for="radio21">Choice 1</label>
        <input type="radio" id="radio22" name="radio" /><label
for="radio22">Choice 2</label>
-        <input type="radio" id="radio23" name="radio" /><label
for="radio23">Choice 3</label>
+        <input type="radio" id="radio23" name="radio" checked="checked" /><label
for="radio23">Choice 3</label>
    </div>
</form>
@@ -103,7 +103,7 @@
        <button
class="{button:{icons:{primary:'ui-icon-mail-closed'},text:false}}">Mail
to...</button>
    </span>
    <span id="mode">
-        <input type="radio" id="mode1" name="radio2" /><label
for="mode1">Edit</label>
+        <input type="radio" id="mode1" name="radio2" checked="checked" /><label
for="mode1">Edit</label>
        <input type="radio" id="mode2" name="radio2" /><label
for="mode2">View</label>
    </span>
</div>
--