| Index: content/test/data/accessibility/html/input-checkbox.html
|
| diff --git a/content/test/data/accessibility/html/input-checkbox.html b/content/test/data/accessibility/html/input-checkbox.html
|
| index fffb8f4316c0b21652d5768456617f581c3e1e92..86a5a4096c69f65d6b035ee69e742b60cc36e5cb 100644
|
| --- a/content/test/data/accessibility/html/input-checkbox.html
|
| +++ b/content/test/data/accessibility/html/input-checkbox.html
|
| @@ -4,12 +4,19 @@
|
| @WIN-ALLOW:CHECKED*
|
| @WIN-ALLOW:ia2_hypertext=*
|
| @WIN-ALLOW:IA2_STATE_*
|
| +@WIN-ALLOW:MIXED
|
| @WIN-ALLOW:xml-roles:*
|
| -->
|
| <html>
|
| <body>
|
| - <label><input type="checkbox" checked value="checked1">CheckBox1</label>
|
| - <label><input type="checkbox" aria-checked="true" value="checked2">CheckBox2</label>
|
| - <label><input type="checkbox" role="checkbox" aria-checked="true" value="checked3">CheckBox3</label>
|
| + <label><input type="checkbox" checked value="Checked1">Checkbox1</label>
|
| + <label><input type="checkbox" aria-checked="true" value="Checked2">Checkbox2</label>
|
| + <label><input type="checkbox" role="checkbox" aria-checked="true" value="Checked3">Checkbox3</label>
|
| + <label><input type="checkbox" id="checkbox4" value="Checked4">Checkbox4</label>
|
| +
|
| + <script>
|
| + var checkbox4 = document.getElementById('checkbox4');
|
| + checkbox4.indeterminate = true;
|
| + </script>
|
| </body>
|
| </html>
|
|
|