Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
|
tkent
2014/09/09 06:37:00
The CL is independent from forms. Probably this t
esprehn
2014/09/09 10:20:13
ditto.
Sunil Ratnu
2014/09/09 10:41:57
Done.
Sunil Ratnu
2014/09/09 10:41:57
Done.
| |
| 2 <body> | |
| 3 This test checks that if an element has a parent element and the dir attribute | |
| 4 is not in a defined state (i.e. it is not present or has an invalid value), the | |
| 5 directionality of the element is the same as the element's parent element's | |
| 6 directionality. | |
| 7 <div dir='rtl'> | |
| 8 <textarea dir=''>RTL</textarea> | |
| 9 </div> | |
| 10 | |
| 11 <div dir='rtl'> | |
| 12 <textarea dir='invalidDirName'>RTL</textarea> | |
| 13 </div> | |
| 14 | |
| 15 <div dir='rtl'> | |
| 16 <input type='text' dir='' value='RTL'> | |
| 17 </div> | |
| 18 | |
| 19 <div dir='rtl'> | |
| 20 <input type='text' dir='invalidDirName' value='RTL'> | |
| 21 </div> | |
| 22 | |
| 23 </body> | |
| 24 </html> | |
| OLD | NEW |