--- /dev/null
+layer at (0,0) size 800x600
+ RenderCanvas at (0,0) size 800x600
+layer at (0,0) size 800x600
+ RenderBlock {HTML} at (0,0) size 800x600
+ RenderBody {BODY} at (8,8) size 784x576
+ RenderBlock {DIV} at (0,0) size 784x52
+ RenderBlock {DL} at (0,0) size 784x52
+ RenderBlock {DT} at (0,0) size 784x18
+ RenderText {TEXT} at (0,0) size 153x18
+ text run at (0,0) width 153: "DT text is rendered here"
+ RenderBlock {DD} at (0,34) size 784x18
+ RenderBlock {UL} at (0,0) size 784x18
+ RenderListItem {LI} at (0,0) size 784x18
+ RenderListMarker at (0,5) size 19x9
+ RenderText {TEXT} at (19,0) size 111x18
+ text run at (19,0) width 111: "LI text is here too"
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+ <title>A List Apart</title>
+
+<style type="text/css">
+
+
+#subnav ul {
+
+ padding: 0;
+
+ }
+
+#subnav ul li {
+ list-style: disc url(http://www.alistapart.com/i/listmark.gif) inside;
+
+ }
+
+#subnav dd {
+ margin: 0;
+ }
+
+</style>
+
+
+
+</head>
+
+<body>
+
+
+
+<div id="subnav">
+
+<dl>
+<dt>DT text is rendered here</dt>
+<dd>
+<ul>
+<li>LI text is here too</li>
+
+</ul>
+</dd>
+</dl>
+
+
+
+
+
+</div>
+
+</body>
+</html>
\ No newline at end of file
+2005-04-22 David Hyatt <hyatt@apple.com>
+
+ Fix for 4096681, fix regression in how the list-style property is parsed. It no longer parses when it hits
+ a url in the property value list now, because the list pointer did not get advanced. This fixes alistapart.com.
+
+ Reviewed by john
+
+ * khtml/css/cssparser.cpp:
+ (CSSParser::parseValue):
+ * layout-tests/fast/lists/009-expected.txt: Added.
+ * layout-tests/fast/lists/009.html: Added.
+ * layout-tests/fast/lists/resources/listmark.gif: Added.
+
2005-04-22 Darin Adler <darin@apple.com>
Reviewed by John.