| Index: third_party/WebKit/LayoutTests/fast/lists/list-type-position-direction.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/lists/list-type-position-direction.html b/third_party/WebKit/LayoutTests/fast/lists/list-type-position-direction.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..182f67757c448feb21caa0402ffc2651aa2d66a4
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/lists/list-type-position-direction.html
|
| @@ -0,0 +1,91 @@
|
| +<!DOCTYPE html>
|
| +
|
| +<!-- TODO(wkorman): images, vertical writing mode -->
|
| +
|
| +<h1>LTR</h1>
|
| +
|
| +<h2>Disc</h2>
|
| +<ul style="list-style-type: disc;">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h3>Inside</h3>
|
| +<ul style="list-style-type: disc; list-style-position: inside;">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h2>Circle</h2>
|
| +<ul style="list-style-type: circle;">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h3>Inside</h3>
|
| +<ul style="list-style-type: circle; list-style-position: inside;">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h2>Square</h2>
|
| +<ul style="list-style-type: square;">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h3>Inside</h3>
|
| +<ul style="list-style-type: square; list-style-position: inside;">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h1>RTL</h1>
|
| +
|
| +<h2>Disc</h2>
|
| +<ul style="list-style-type: disc;" dir="rtl">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h3>Inside</h3>
|
| +<ul style="list-style-type: disc; list-style-position: inside;" dir="rtl">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h2>Circle</h2>
|
| +<ul style="list-style-type: circle;" dir="rtl">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h3>Inside</h3>
|
| +<ul style="list-style-type: circle; list-style-position: inside;" dir="rtl">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h2>Square</h2>
|
| +<ul style="list-style-type: square;" dir="rtl">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
| +
|
| +<h3>Inside</h3>
|
| +<ul style="list-style-type: square; list-style-position: inside;" dir="rtl">
|
| +<li>Cat
|
| +<li>Dog
|
| +<li>Chicken
|
| +</ul>
|
|
|