Chromium Code Reviews| Index: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-color-recalc.html |
| diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-color-recalc.html b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-color-recalc.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4930a64abc06f6fccd23c6cd83007413f6c0ae59 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-color-recalc.html |
| @@ -0,0 +1,15 @@ |
| +<!doctype html> |
| +<style> |
| + div { |
| + font-size: 50px; |
| + text-decoration: underline solid red; |
| + } |
| +</style> |
| +<script> |
| + window.addEventListener("load", function() { |
|
esprehn
2014/03/31 17:41:24
onload = function() {
|
| + target.style["textDecorationColor"] = "green"; |
| + }); |
| +</script> |
| +<div id="target"> |
| + Filler text |
| +</div> |