| Index: LayoutTests/fast/forms/radio/radio-onchange.html
|
| diff --git a/LayoutTests/fast/forms/radio/radio-onchange.html b/LayoutTests/fast/forms/radio/radio-onchange.html
|
| index 18e4a59936ba1b1d4a71c6f3e91295a52dbfd6ed..db0c3c9ee29468eacde111fb6c14291fccc55915 100644
|
| --- a/LayoutTests/fast/forms/radio/radio-onchange.html
|
| +++ b/LayoutTests/fast/forms/radio/radio-onchange.html
|
| @@ -6,6 +6,7 @@
|
| <body>
|
| <input type="radio" name="test" id="rd">
|
| <input type="radio" name="test" id="rd2" onchange="handleChange()">
|
| +<input type="radio" name="test" id="rd3" value="" onchange="handleChange()">
|
| <script>
|
| description("This is to test onchange of radio buttons");
|
|
|
| @@ -14,6 +15,7 @@ function handleChange() {
|
| }
|
|
|
| document.getElementById('rd2').click();
|
| +document.getElementById('rd3').click();
|
| </script>
|
| </body>
|
| </html>
|
|
|