summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-display/display-contents-state-change-001.html
blob: 3923041e0deb677494dc3368cec8f97ab295fa67 (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>
<meta charset="utf-8">
<title>CSS display: State changes are handled correctly for display: contents children</title>
<link rel="help" href="https://drafts.csswg.org/css-display-3/#valdef-display-contents">
<link rel="author" name="Emilio Cobos Álvarez" href="mailto:ecobos@igalia.com">
<link rel="match" href="display-contents-state-change-001-ref.html">
<style>
:focus-within .contents {
  color: green;
}
.contents {
  display: contents;
  border: 10px solid red;
  color: red;
}
input {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
</style>
<div>
  <input type="text">
  <div class="contents">This text should be green, there should be no red border at any time.</div>
</div>
<script>
onload = function() {
  document.querySelector('input').focus();
}
</script>