summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-ui/outline-with-padding-001.html
blob: 716491ca25eae11238b7240a3635bdb8a88187cf (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
<!DOCTYPE html>
<title>Outline with padding</title>
<link rel="match" href="reference/outline-with-padding-001-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-ui/#outline-props">
<link rel="help" href="https://crbug.com/1048070">
<link rel="author" href="mailto:kojii@chromium.org">
<meta name="assert" content="Tests the rendering of outline applied to a box with padding">
<style>
inline-block {
  display: inline-block;
  width: 65px;
  color: transparent;
  background: orange;
}
</style>
<body>
<div style="display: flex">
  <span style="padding-left: 99px; outline: auto">
    <span>
      <inline-block>Previous</inline-block>
    </span>
  </span>
</div>

<div style="width: 50px; padding-left: 99px; outline: auto">
  <span>
    <inline-block>Previous</inline-block>
  </span>
</div>
</body>