diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /khtml/test/lists.html | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/test/lists.html')
-rw-r--r-- | khtml/test/lists.html | 221 |
1 files changed, 221 insertions, 0 deletions
diff --git a/khtml/test/lists.html b/khtml/test/lists.html new file mode 100644 index 000000000..8f781653c --- /dev/null +++ b/khtml/test/lists.html @@ -0,0 +1,221 @@ +<html> +<body> +<ul> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ul> + +<hr> + +Nested lists: +<ul> +<li> first item +<li> second item +<li> a nested list +<ul> +<li> first nested item +<li> second nested item +</ul> +<li> fourth item +</ul> + +<hr> + +Numbered list: +<ol> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ol> + +<hr> +In a fixed width table: +<table width=100 border=1 bgcolor=white> +<tr><td> +<ul> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ul> + +<hr> + +Nested lists: +<ul> +<li> first item +<li> second item +<li> a nested list +<ul> +<li> first nested item +<li> second nested item +</ul> +<li> fourth item +</ul> + +<hr> + +Numbered list: +<ol> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ol> +</td></tr> +</table> + +<hr> +In a variable width table: +<table border=1 bgcolor=white> +<tr><td> +<ul> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ul> + +<hr> + +Nested lists: +<ul> +<li> first item +<li> second item +<li> a nested list +<ul> +<li> first nested item +<li> second nested item +</ul> +<li> fourth item +</ul> + +<hr> + +Numbered list: +<ol> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ol> +</td></tr> +</table> + +<hr> +Now the same thing in a right to left context: + +<div dir=rtl> +<hr> +<ul dir=rtl> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ul> + +<hr> + +Nested lists: +<ul> +<li> first item +<li> second item +<li> a nested list +<ul> +<li> first nested item +<li> second nested item +</ul> +<li> fourth item +</ul> + +<hr> + +Numbered list: +<ol> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ol> + +<hr> +In a fixed width table: +<table width=100 border=1 bgcolor=white> +<tr><td> +<ul> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ul> + +<hr> + +Nested lists: +<ul> +<li> first item +<li> second item +<li> a nested list +<ul> +<li> first nested item +<li> second nested item +</ul> +<li> fourth item +</ul> + +<hr> + +Numbered list: +<ol> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ol> +</td></tr> +</table> + +<hr> +In a variable width table: +<table border=1 bgcolor=white> +<tr><td> +<ul> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ul> + +<hr> + +Nested lists: +<ul> +<li> first item +<li> second item +<li> a nested list +<ul> +<li> first nested item +<li> second nested item +</ul> +<li> fourth item +</ul> + +<hr> + +Numbered list: +<ol> +<li> first item +<li> second item +<li> third item +<li> fourth item +</ol> +</td></tr> +</table> +</div> + + +</body> +</html>
\ No newline at end of file |