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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select-writing-direction-natural.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style>
4 select { width: 70px; }
5 </style>
6 </head>
7 <body>
8 <p>
9 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13775">http: //bugs.webkit.org/show_bug.cgi?id=13775</a>
10 REGRESSION: Popup button text should use "natural" directionality to mat ch the items in the popup menu</i>.
11 </p>
12 <p>
13 In all of the popup buttons below, the letter A should be on the left an d the letter &#x05d0; should be on the right.
14 </p>
15 <div style="direction: ltr;">
16 <div style="text-align: left;">
17 <select><option>&#x05d0;A</option></select>
18 <select><option>A&#x05d0;</option></select>
19 <select><option>(&#x05d0;A</option></select>
20 <select><option>(A&#x05d0;</option></select>
21 </div>
22 <div style="text-align: right;">
23 <select><option>&#x05d0;A</option></select>
24 <select><option>A&#x05d0;</option></select>
25 <select><option>(&#x05d0;A</option></select>
26 <select><option>(A&#x05d0;</option></select>
27 </div>
28 </div>
29 <div style="direction: rtl;">
30 <div style="text-align: left;">
31 <select><option>&#x05d0;A</option></select>
32 <select><option>A&#x05d0;</option></select>
33 <select><option>(&#x05d0;A</option></select>
34 <select><option>(A&#x05d0;</option></select>
35 </div>
36 <div style="text-align: right;">
37 <select><option>&#x05d0;A</option></select>
38 <select><option>A&#x05d0;</option></select>
39 <select><option>(&#x05d0;A</option></select>
40 <select><option>(A&#x05d0;</option></select>
41 </div>
42 </div>
43 </body>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698