| Index: LayoutTests/fast/borders/outline-negative-start-expected.html
|
| diff --git a/LayoutTests/fast/borders/outline-negative-start-expected.html b/LayoutTests/fast/borders/outline-negative-start-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1029d1f4c0e5185f293d932a2321e23f931cbcde
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/borders/outline-negative-start-expected.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.square {
|
| + background-color: lightblue;
|
| + width: 50px;
|
| + height: 50px;
|
| + display: inline-block;
|
| + margin: 5px;
|
| +}
|
| +.dashed {
|
| + outline: 1px dashed black;
|
| +}
|
| +.dotted {
|
| + outline: 1px dotted black;
|
| +}
|
| +.solid {
|
| + outline: 1px solid black;
|
| +}
|
| +</style>
|
| +<div class="square solid"></div>
|
| +<div class="square dashed"></div>
|
| +<div class="square dotted"></div>
|
|
|