-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dir=auto for textarea with rtl text.
I copy-pasted all `SetDirectionFromValue`-related parts from HTMLInputElement to HTMLTextAreaElement Differential Revision: https://phabricator.services.mozilla.com/D176999 bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1108425 gecko-commit: e6638f5e6d9f4217f9b1ddacd8f985cf554dfeaf gecko-reviewers: smaug
- Loading branch information
Showing
3 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<link rel="author" title="Vincent Hilla" href="mailto:[email protected]"> | ||
<link rel="help" href="https://html.spec.whatwg.org/#the-directionality"> | ||
</head> | ||
<body> | ||
<input id="inp"/> | ||
<textarea id="ta"></textarea> | ||
<div id="div"></div> | ||
<pre id="pre"></pre> | ||
|
||
<script> | ||
function doTest(e) { | ||
e.dir = "ltr"; | ||
assert_true(e.matches(":dir(ltr)"), "dir to ltr on " + e.tagName + " element"); | ||
|
||
e.dir = "rtl"; | ||
assert_true(e.matches(":dir(rtl)"), "dir to rtl on " + e.tagName + " element"); | ||
|
||
e.dir = "auto"; | ||
assert_true(e.matches(":dir(ltr)"), "dir to auto, empty text on " + e.tagName + " element"); | ||
|
||
e.value = "\u05D0;"; | ||
e.textContent = "\u05D0;"; | ||
assert_true(e.matches(":dir(rtl)"), "auto dir, text to Hebrew on " + e.tagName + " element"); | ||
|
||
e.dir = "ltr"; | ||
assert_true(e.matches(":dir(ltr)"), "dir to ltr, Hebrew text on " + e.tagName + " element"); | ||
|
||
e.dir = "auto"; | ||
assert_true(e.matches(":dir(rtl)"), "dir to auto, Hebrew text on " + e.tagName + " element"); | ||
|
||
e.removeAttribute("dir"); | ||
assert_true(e.matches(":dir(ltr)"), "dir removed, Hebrew text on " + e.tagName + " element"); | ||
} | ||
|
||
const elements = [inp, ta, div, pre]; | ||
for (const e of elements) { | ||
test(() => doTest(e), "Dynamically changing dir, text on " + e.tagName.toLowerCase() + " element"); | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters