Chromium Code Reviews| Index: LayoutTests/fast/css-generated-content/attr-content-dynamic.html |
| diff --git a/LayoutTests/fast/css-generated-content/attr-content-dynamic.html b/LayoutTests/fast/css-generated-content/attr-content-dynamic.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..54a273a6eba6e2618496088ac3ad4ed3044ef429 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css-generated-content/attr-content-dynamic.html |
| @@ -0,0 +1,13 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +#before::before, #after::after { content: attr(my-value) } |
| +</style> |
| +<p>You should see two PASSes below.</p> |
| +<div id="before">SS</div> |
| +<div id="after">PA</div> |
| +<script> |
| +document.body.offsetTop; // force layout |
| + |
| +before.setAttribute("my-value", "PA"); |
| +after.setAttribute("my-value", "SS"); |
|
esprehn
2014/09/29 03:47:15
This is really cute.
|
| +</script> |