blob: 1684a60b66dc937dffea458e559c80dbc6a6b1b4 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>
Test for how block-in-inline splits behave inside of -webkit-box.
</title>
<style>
.container {
display: -webkit-box;
-webkit-box-pack: justify;
width: 300px;
border: 1px solid black;
font: 10px sans-serif;
}
.container > * {
background: lightgray;
}
</style>
</head>
<body>
<div class="container">
raw text
<span>start<div>BLOCK</div>end</span>
raw text
</div>
</body>
</html>
|