diff options
Diffstat (limited to 'layout/reftests/list-item/numbering-5-ref.html')
-rw-r--r-- | layout/reftests/list-item/numbering-5-ref.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/list-item/numbering-5-ref.html b/layout/reftests/list-item/numbering-5-ref.html new file mode 100644 index 0000000000..74f5c37d67 --- /dev/null +++ b/layout/reftests/list-item/numbering-5-ref.html @@ -0,0 +1,24 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>Reference for reordered 'li' flex items</title> + <style> + .container { + display: flex; + flex-direction: column; + } + </style> +</head> +<body> + <ol class="container"> + <div>4. List item 4</div> + <div>2. List item 2</div> + <div>3. List item 3</div> + <div>5. List item 5</div> + <div>6. List item 6</div> + <div>8. List item 8</div> + <div>1. List item 1</div> + <div>7. List item 7</div> + </ol> +</body> +</html> |