summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-break/1405443.html
blob: 8fb19ffb1a4c8a67895dd078ab121705efc2cbbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<style>
  #float { page-break-inside: avoid; float: left }
  span { padding-left: 1px; }
  #columns { columns: 0px; column-gap: 0; )
</style>
<body>
  There word 'Hello' should appear below.
  <div id="columns">
    H
    <div id="float">
      <span> <!-- Just need an inline with nonzero width -->
        <div style="padding-left: 1ch">&nbsp;ello</div>
      </span>
    </div>
  </div>
</body>