Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: third_party/WebKit/LayoutTests/fast/lists/list-type-position-direction.html

Issue 1403643002: Rework list marker spacing for better web compatibility. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@472084_use_list_item_painter
Patch Set: Fix compile error with default switch case. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698