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

Unified Diff: LayoutTests/fast/html/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: Fix failing test Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698