Chromium Code Reviews| Index: LayoutTests/fast/multicol/vertical-rl/rule-style-expected.html |
| diff --git a/LayoutTests/fast/multicol/vertical-rl/rule-style-expected.html b/LayoutTests/fast/multicol/vertical-rl/rule-style-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c129012e0d61dba23467b5fb05e7f4aab7972447 |
| --- /dev/null |
| +++ b/LayoutTests/fast/multicol/vertical-rl/rule-style-expected.html |
| @@ -0,0 +1,28 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + body { |
| + -webkit-writing-mode: vertical-rl; |
| + } |
| + |
| + .rule { |
| + border-top-color: gray; |
| + border-top-width: 12px; |
| + width: 200px; |
| + height: 0; |
| + margin: 4px 0; |
| + display: inline-block; |
| + } |
| + |
| + .rule > div { |
|
mstensho (USE GERRIT)
2014/11/04 21:55:49
This selector (and the inner DIVs) not needed.
andersr
2014/11/05 15:16:34
No ... of course not.
Done.
|
| + width: 400px; |
| + } |
| +</style> |
| + |
| +<div class="rule" style="border-top-style: solid;"><div></div></div> |
| +<div class="rule" style="border-top-style: dotted;"><div></div></div> |
| +<div class="rule" style="border-top-style: dashed;"><div></div></div> |
| +<div class="rule" style="border-top-style: groove;"><div></div></div> |
| +<div class="rule" style="border-top-style: ridge;"><div></div></div> |
| +<div class="rule" style="border-top-style: inset;"><div></div></div> |
| +<div class="rule" style="border-top-style: outset;"><div></div></div> |
| +<div class="rule" style="border-top-style: double;"><div></div></div> |