summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/permission-element/display-css-property-reference.tentative.html
blob: 973a76d723518218565642056beb5e6e56a3d1c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<meta charset=utf-8>
<link rel="match" href="display-css-property-reference-expected.html">
<link rel="help" href="https://github.com/WICG/PEPC/blob/main/explainer.md#locking-the-pepc-style">
<body>
  <div>
    The permission element should either be display 'none' or 'inline-block'
  </div>

<style>
  #id1 {
    display: flex;
  }
  #id2 {
    display: none;
  }
</style>

<permission id="id1" type="geolocation">
<permission id="id2" type="camera">
<span>After element</span>
</body>