| /* Pack them to fit everything in 800*600 */ |
| :matches(:matches(:matches([readonly]))) { |
| :matches(:matches(:matches([readonly=foobar]))) { |
| <p>Verify style sharing does not ignore the "readonly" attribute.</p> |
| <div readonly>Readonly defined</div> |
| <div readonly="">Readonly defined empty</div> |
| <div readonly="foobar">Readonly is foobar</div> |
| <span readonly>Readonly defined</span> |
| <span readonly="">Readonly defined empty</span> |
| <span readonly="foobar">Readonly is foobar</span> |
| <input value="No readonly"> |
| <input readonly value="Readonly defined"> |
| <input readonly="" value="Readonly defined empty"> |
| <input readonly="foobar" value="Readonly is foobar"> |