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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/html/details-nested-2.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 details {
3 border: solid 0.5em;
4 }
5
6 summary {
7 border: solid 0.5em;
8 }
9
10 summary.level1 {
11 border-color: #99c;
12 }
13
14 details.level1 {
15 border-color: #559;
16 }
17
18 summary.level2 {
19 border-color: #c99;
20 }
21
22 details.level2 {
23 border-color: #955;
24 }
25 </style>
26 <body>
27 <details class="level1" open>
28 <summary class="level1">
29 summary
30 </summary>
31 <details class="level2" open>
32 <summary class="level2">
33 nested summary (details-deails-summary)
34 </summary>
35 nested details (details-deails)
36 </details>
37 details
38 </details>
39 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698