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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/fieldset-align.html

Issue 1528823002: Move tests related to <fieldset> and <legend> to fast/forms/fieldset. (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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/fieldset-legend-padding-unclipped-fieldset-border.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 </head>
4 <body>
5 <p>Legend align test</p>
6 <fieldset>
7 <legend align="left">My Legend left</legend> <input/>
8 </fieldset>
9 <fieldset>
10 <legend align="center">My Legend center</legend> <input/>
11 </fieldset>
12 <fieldset>
13 <legend align="right">My Legend right</legend> <input/>
14 </fieldset>
15 <fieldset>
16 <legend>My Legend default</legend> <input/>
17 </fieldset>
18 <hr>
19 <p>Legend align test, RTL</p>
20 <span dir="RTL">
21 <fieldset>
22 <legend align="left">My Legend left</legend> <input/>
23 </fieldset>
24 <fieldset>
25 <legend align="center">My Legend center</legend> <input/>
26 </fieldset>
27 <fieldset>
28 <legend align="right">My Legend right</legend> <input/>
29 </fieldset>
30 <fieldset>
31 <legend>My Legend default</legend> <input/>
32 </fieldset>
33 </span>
34 <hr>
35 <p>Legend align test with margin and padding</p>
36 <fieldset style="margin: 15px; padding: 15px">
37 <legend align="left">My Legend left</legend> <input/>
38 </fieldset>
39 <fieldset style="margin: 15px; padding: 15px">
40 <legend align="center">My Legend center</legend> <input/>
41 </fieldset>
42 <fieldset style="margin: 15px; padding: 15px">
43 <legend align="right">My Legend right</legend> <input/>
44 </fieldset>
45 <fieldset style="margin: 15px; padding: 15px">
46 <legend>My Legend default</legend> <input/>
47 </fieldset>
48 <hr>
49 <p>Legend align test with margin and padding, RTL</p>
50 <span dir="RTL">
51 <fieldset style="margin: 15px; padding: 15px">
52 <legend align="left">My Legend left</legend> <input/>
53 </fieldset>
54 <fieldset style="margin: 15px; padding: 15px">
55 <legend align="center">My Legend center</legend> <input/>
56 </fieldset>
57 <fieldset style="margin: 15px; padding: 15px">
58 <legend align="right">My Legend right</legend> <input/>
59 </fieldset>
60 <fieldset style="margin: 15px; padding: 15px">
61 <legend>My Legend default</legend> <input/>
62 </fieldset>
63 </span>
64 </body>
65 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/fieldset-legend-padding-unclipped-fieldset-border.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698