summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-variables/variable-generated-content-dynamic-001.html
blob: 792c51d31c3e90c3181e540d5101a4b8639fd3e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test: Dynamic attribute change handling in generated content</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="help" href="https://drafts.csswg.org/css-variables/#using-variables">
<link rel="match" href="variable-generated-content-dynamic-001-ref.html">
<style>
:root {
  --my-attr: attr(data-foo);
}
div::before {
  content: var(--my-attr);
}
</style>
<div data-foo="FAIL"></div>
<script>
document.body.offsetTop;
document.querySelector('div').setAttribute('data-foo', "PASS");
</script>