Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLProgressElement / progress-writing-mode.html
blob59e0774e4b2dfabd70a9732183fa372d23ad72ac
1 <html>
2 <head>
3 <style>
4 progress {
5 width: 50px;
6 height: 50px;
7 -webkit-appearance: none;
8 background-color: red; /* should not be visible */
10 </style>
11 </head>
12 <body>
13 <progress min=0 value=30 max=100 style="-webkit-writing-mode: vertical-lr;"></progress>
14 <progress min=0 value=30 max=100 style="-webkit-writing-mode: vertical-rl;"></progress>
15 <progress min=0 value=30 max=100 style="-webkit-writing-mode: horizontal-tb;"></progress>
16 <progress min=0 value=30 max=100 style="-webkit-writing-mode: horizontal-bt;"></progress>
17 </body>
18 </html>