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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/html/details-position.html

Issue 2670273002: Move tests for DETAILS and SUMMARY elements to html/details_summary/. (Closed)
Patch Set: Created 3 years, 10 months 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 <style>
2 body { overflow: hidden; }
3
4 summary.fixed {
5 position: fixed;
6 left: 50px;
7 top: 150px;
8 }
9
10 summary.relative {
11 position: relative;
12 left: 150px;
13 top: 150px;
14 }
15
16 summary.absolute {
17 position: absolute;
18 left: 250px;
19 top: 150px;
20 }
21
22 </style>
23
24 <body>
25 <details>
26 <summary class="fixed">fixed</summary>
27 <input>
28 </details>
29 <details>
30 <summary class="relative">relative</summary>
31 <input>
32 </details>
33 <details>
34 <summary class="absolute">absolute</summary>
35 <input>
36 </details>
37 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698