Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ol element</title>
<link rel="author" title="dzenana" href="mailto:dzenana.trenutak@gmail.com">
<meta name="assert" content="Sequences produced by calculated values for LI elements within OL match spec's expectations. (part two)" />
<style type="text/css">
span p {display:list-item; margin-left: 0; margin-top: 0; margin-bottom: 0; padding-left: 0; padding-top: 0; padding-bottom: 0;}
span span p {margin-left: 0; margin-top: 0; margin-bottom: 0; padding-left: 5em; padding-top: 0; padding-bottom: 0; font-family: monospace;}
</style>
</head>
<body>
<p>This test continues to validate the ol element. This reftest is necessary because the values of the ol's li children as calculated and displayed by the user agent are NOT systematically available programatically. Only explicitly-set values are available programatically. Therefore, we need to check actual rendering against expected rendering.</p>
<p><strong>This reftest passes if each list's items are numbered identically to the horizontal sequence immediately above those list items.</strong></p>
<p>(Note: each list item has no content; only the sequencing should appear.)</p>
<span>
<p>4, 5, 6 (ol has start attribute of 2 which is overridden by first list item's value attribute of 4)</p>
<span>
<p>4.</p>
<p>5.</p>
<p>6.</p>
</span>
<p>4, 5, 6 (ol has start attribute of -10 which is overridden by first list item's value attribute of 4)</p>
<span>
<p>4.</p>
<p>5.</p>
<p>6.</p>
</span>
<p>1, 5, 6 (2nd list item has value attribute of 5)</p>
<span>
<p>1.</p>
<p>5.</p>
<p>6.</p>
</span>
<p>-1, -5, -4 (list has a start attribute of -1, and 2nd list item has value attribute of -5)</p>
<span>
<p>-1.</p>
<p>-5.</p>
<p>-4.</p>
</span>
</span>
</body>
</html>