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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/html/details-marker-style.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 <!DOCTYPE html>
2 <body>
3 <style>
4 summary.withpadding::-webkit-details-marker {
5 padding: 8px 16px 24px 32px;
6 border-width: 8px 16px 24px 32px;
7 border-style: solid;
8 border-color: lime;
9 }
10
11 summary.nopadding::-webkit-details-marker {
12 border: 8px solid lime;
13 width: 48px;
14 height: 24px;
15 }
16
17 details {
18 font-size: 24px;
19 }
20 </style>
21 <div style="-webkit-writing-mode: horizontal-tb;">
22 <details><summary class="withpadding">Summary</summary></details>
23 </div>
24 <div style="-webkit-writing-mode: vertical-rl; -webkit-text-orientation: sideway s-right;">
25 <details><summary class="withpadding">Summary</summary></details>
26 </div>
27
28 <div style="-webkit-writing-mode: horizontal-tb;">
29 <details><summary class="nopadding">Summary</summary></details>
30 </div>
31 <div style="-webkit-writing-mode: vertical-rl; -webkit-text-orientation: sideway s-right;">
32 <details><summary class="nopadding">Summary</summary></details>
33 </div>
34 </body>
35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698