Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: LayoutTests/fast/forms/direction-in-case-of-invalid-dir-attribute-expected.html

Issue 524593003: Resolve direction correctly when dir attribute is not in a defined state Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Splitting CL into 2 Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
esprehn 2014/09/09 10:20:13 Missing doctype.
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'>RTL</textarea>
9 </div>
10
11 <div dir='rtl'>
12 <textarea dir='rtl'>RTL</textarea>
13 </div>
14
15 <div dir='rtl'>
16 <input type='text' dir='rtl' value='RTL'>
17 </div>
18
19 <div dir='rtl'>
20 <input type='text' dir='rtl' value='RTL'>
21 </div>
22
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698