<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<input dir="auto" placeholder="LTR placeholder string" value="ע">
<script>
test(() => {
assert_equals(getComputedStyle(document.querySelector('input'), '').direction, 'rtl');
}, 'Placeholder\'s direction shouldn\'t affect INPUT direction.');
</script>
</body>