1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/counters/t1204-order-01-d-reference.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,43 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 + <head> 1.7 + <title>CSS 2.1 Test Suite: Order of counters in out-of-flow content</title> 1.8 + <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#counters"/> 1.9 + <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content"/> 1.10 + <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#counter"/> 1.11 + <style type="text/css"> 1.12 + 1.13 + ul { display: block; margin: 0; padding: 0; } 1.14 + li, div { display: block; margin: 0; padding: 0; 1.15 + width: 3em; border: thin solid; } 1.16 + 1.17 + #four { border: none; } 1.18 + 1.19 + #two { float: left; } 1.20 + #three { position: relative; } 1.21 + #four { position: relative; } 1.22 + #four div { position: absolute; left: 8em; } 1.23 + #six { position: absolute; top: 5em; left: 12em; } 1.24 + #eight { position: fixed; top: 8em; left: 4em; } 1.25 + 1.26 + </style> 1.27 + </head> 1.28 + <body> 1.29 + 1.30 + <p>The number pairs (same digit repeated twice) "11" through "44" 1.31 + should appear on this page.</p> 1.32 + 1.33 + <ul> 1.34 + <li id="one"><span>1</span>1</li> 1.35 + <li id="two"><span>2</span>2</li> 1.36 + <li id="three"><span>3</span>3</li> 1.37 + <li id="four"><div><span>4</span>4</div></li> 1.38 + <li id="five"><span>5</span>5</li> 1.39 + <li id="six"><span>6</span>6</li> 1.40 + <li id="seven"><span>7</span>7</li> 1.41 + <li id="eight"><span>8</span>8</li> 1.42 + <li id="nine"><span>9</span>9</li> 1.43 + </ul> 1.44 + 1.45 + </body> 1.46 +</html>