summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/button/button-visibility-1.html
blob: 84faf2ca031c425d97b975f02e755062cc14ec05 (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
<html>

<head>
  <meta charset="utf-8">
  <title>Test for bug 1732921</title>
  <style>
    .parent {
      border: 0px;
      background: none;
      visibility: hidden;
      will-change: transform;
    }

    .child {
      visibility: visible;
    }
  </style>
</head>

<body>
  <button class="parent">
    <span class="child">foo</span>
  </button>
</body>

</html>