summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/permission-element/display-css-property-reftest.tentative.html
blob: e83786373d599a6df6934b019ffaf7ff08918b6d (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-reftest-ref.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>