| <html> |
| <body> |
| This tests that the text color changes appropriately when the text field is disabled.<br> |
| <input type=text disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text value="This text field is not disabled" ><br> |
| <input type=text style="color:red" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="color:red" value="This text field is not disabled" ><br> |
| <input type=text style="background-color:blue" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="background-color:blue" value="This text field is not disabled" ><br> |
| <input type=text style="color:red; background-color:blue" disabled value="The text in this disabled field should displayed as dimmed or grey"> |
| <input type=text style="color:red; background-color:blue" value="This text field is not disabled"><br> |
| <input type=text style="background-color:black" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="background-color:black" value="This text field is not disabled" ><br> |
| <input type=text style="color:white; background-color:black" disabled value="The text in this disabled field should displayed as dimmed or grey"> |
| <input type=text style="color:white; background-color:black" value="This text field is not disabled"><br> |
| <input type=text style="background-color:grey" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="background-color:grey" value="This text field is not disabled" ><br> |
| <input type=text style="color:white; background-color:darkgray" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="color:white; background-color:darkgray" value="This text field is not disabled" ><br> |
| <input type=text style="color:grey; background-color:black" disabled value="The text in this disabled field should displayed as dimmed or grey"> |
| <input type=text style="color:grey; background-color:black" value="This text field is not disabled"><br> |
| <input type=text style="color:red; background-color:grey" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="color:red; background-color:grey" value="This text field is not disabled" ><br> |
| <input type=text style="color:grey; background-color:red" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="color:grey; background-color:red" value="This text field is not disabled" ><br> |
| <input type=text style="color:red; background-color:white" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="color:red; background-color:white" value="This text field is not disabled" ><br> |
| <input type=text style="color:red; background-color:transparent" disabled value="The text in this disabled field should displayed as dimmed or grey" > |
| <input type=text style="color:red; background-color:transparent" value="This text field is not disabled" ><br> |
| </body> |
| </html> |
| |