blob: 976d5b5ce99f46355cb25364ddab6ac7cfb8709d (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Testing box-decoration-break with bidi resolution</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1210877">
<style type="text/css">
.test {
box-decoration-break: slice;
background: black;
}
.p {
padding:11px 3px 5px 7px;
}
.b {
border: 1px solid blue;
border-width:3px 5px 7px 11px;
}
.m {
margin:5px 7px 11px 3px;
}
.direction {
direction: rtl;
}
x {display:inline-block; width:20px; height:10px; background:lime; }
y {display:inline-block; width:30px; height:1px; background:lime; }
d {display:inline-block; border:10px solid red }
</style>
</head>
<body>
<div style="float:left; width: 100px;">
<span class="test p"><x></x></span><br>
<span class="test p"><y></y></span><br><br><br>
<span class="test b"><x></x></span><br>
<span class="test b"><y></y></span><br><br><br>
<span class="test p b"><x></x></span><br>
<span class="test p b"><y></y></span><br><br><br>
<span class="test m"><x></x></span><br>
<span class="test m"><y></y></span><br><br><br>
<span class="test p m"><x></x></span><br>
<span class="test p m"><y></y></span><br><br><br>
<span class="test b m"><x></x></span><br>
<span class="test b m"><y></y></span><br><br><br>
<span class="test p b m"><x></x></span><br>
<span class="test p b m"><y></y></span><br><br><br>
</div><div style="float:left; width: 100px; text-align:right">
<span class="test p"><y></y></span><br>
<span class="test p"><x></x></span><br><br><br>
<span class="test b"><y></y></span><br>
<span class="test b"><x></x></span><br><br><br>
<span class="test p b"><y></y></span><br>
<span class="test p b"><x></x></span><br><br><br>
<span class="test m"><y></y></span><br>
<span class="test m"><x></x></span><br><br><br>
<span class="test p m"><y></y></span><br>
<span class="test p m"><x></x></span><br><br><br>
<span class="test b m"><y></y></span><br>
<span class="test b m"><x></x></span><br><br><br>
<span class="test p b m"><y></y></span><br>
<span class="test p b m"><x></x></span><br><br><br>
</div>
</body>
</html>
|