Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <meta charset="utf-8"> | |
| 3 <body> | |
| 4 <script src="../../../resources/testharness.js"></script> | |
| 5 <script src="../../../resources/testharnessreport.js"></script> | |
| 6 <input dir="auto" placeholder="LTR placeholder string" value="ע"> | |
| 7 <script> | |
| 8 test(() => { | |
| 9 assert_equals(getComputedStyle(document.querySelector('input'), '').directio n, 'rtl'); | |
| 10 }, 'Placeholder\'s direction shouldn\'t affect INPUT direction.'); | |
| 11 </script> | |
| 12 </body> | |
| OLD | NEW |