blob: bfdde3d80a416c937d4053c37d510ec2a134e5b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<title>
CSS Test: -webkit-box-ordinal-group:0 inside a -webkit-box
</title>
<style>
.box {
display: -webkit-box;
border: 1px solid black;
margin: 5px 20px;
}
.box > * {
border: 1px dotted purple;
}
.bogZero { -webkit-box-ordinal-group: 0; }
.bogOne { -webkit-box-ordinal-group: 1; }
</style>
</head>
<body>
<!-- -webkit-box-ordinal-group is strictly positive in Blink & WebKit. 0 is
rejected as an invalid value. So, the bogZero element below should
end up with the initial value (1) and should *not* be sorted out of its
DOM position in the final rendering. -->
<div class="box">
<div class="bogOne">1</div>
<div class="bogZero">0</div>
</div>
</body>
</html>
|