| Index: LayoutTests/fast/borders/outline-negative-start.html
|
| diff --git a/LayoutTests/fast/borders/outline-negative-start.html b/LayoutTests/fast/borders/outline-negative-start.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..44904a478bef162e8e9322ef5c6a07a259ea77f0
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/borders/outline-negative-start.html
|
| @@ -0,0 +1,25 @@
|
| +<!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;
|
| +}
|
| +.with-rotate {
|
| + transform: rotate(0deg);
|
| +}
|
| +</style>
|
| +<div class="square solid with-rotate"></div>
|
| +<div class="square dashed with-rotate"></div>
|
| +<div class="square dotted with-rotate"></div>
|
|
|