summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-display/display-contents-state-change.html
blob: 4af9a8b00028ae75a8c20d6a59303027744d57c0 (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-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>