| Index: LayoutTests/fast/html/direction-in-case-of-invalid-dir-attribute-expected.html
|
| diff --git a/LayoutTests/fast/html/direction-in-case-of-invalid-dir-attribute-expected.html b/LayoutTests/fast/html/direction-in-case-of-invalid-dir-attribute-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..21fbdec3f9df1fbd684168afc394941b2b9daecd
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/html/direction-in-case-of-invalid-dir-attribute-expected.html
|
| @@ -0,0 +1,25 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| +This test checks that if an element has a parent element and the dir attribute
|
| +is not in a defined state (i.e. it is not present or has an invalid value), the
|
| +directionality of the element is the same as the element's parent element's
|
| +directionality.
|
| +<div dir='rtl'>
|
| + <textarea dir='rtl'>RTL</textarea>
|
| +</div>
|
| +
|
| +<div dir='rtl'>
|
| + <textarea dir='rtl'>RTL</textarea>
|
| +</div>
|
| +
|
| +<div dir='rtl'>
|
| + <input type='text' dir='rtl' value='RTL'>
|
| +</div>
|
| +
|
| +<div dir='rtl'>
|
| + <input type='text' dir='rtl' value='RTL'>
|
| +</div>
|
| +
|
| +</body>
|
| +</html>
|
|
|