| Index: LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html
|
| diff --git a/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html b/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3dbecb4790301dffbed39117f4096700ce4d10f1
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + .test {
|
| + width: 100px;
|
| + height: 100px;
|
| + }
|
| +
|
| + .right { border-right: 50px solid blue; }
|
| + .left { border-left: 50px solid blue; }
|
| +
|
| + .test div {
|
| + width: 100px;
|
| + height: 50px;
|
| + background-color: orange;
|
| + position: relative;
|
| + top: 25px;
|
| + }
|
| +</style>
|
| +<p>There should be a 50px blue border to the left of an orange rectangle:</p>
|
| +<div class="test right"><div></div></div>
|
| +<p>There should be a 50px blue border to the right of an orange rectangle:</p>
|
| +<div class="test left"><div></div></div>
|
|
|