mirror of
https://github.com/servo/servo.git
synced 2025-08-08 06:55:31 +01:00
Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985
This commit is contained in:
parent
43a4f01647
commit
64e0a52537
12717 changed files with 59835 additions and 59820 deletions
|
@ -0,0 +1,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>
|
Loading…
Add table
Add a link
Reference in a new issue