Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / details-marker-style.html
blob8d456698f38f2771175a789bde05970f721cf97e
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;
11 summary.nopadding::-webkit-details-marker {
12 border: 8px solid lime;
13 width: 48px;
14 height: 24px;
17 details {
18 font-size: 24px;
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: sideways-right;">
25 <details><summary class="withpadding">Summary</summary></details>
26 </div>
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: sideways-right;">
32 <details><summary class="nopadding">Summary</summary></details>
33 </div>
34 </body>