blob: fa1387d707579013abbc38d5eace6d7e90f974a9 [file] [log] [blame]
<!doctype html>
<style>
div {
font-size: 50px;
text-decoration: underline solid red;
}
</style>
<script>
onload = function() {
target.style.textDecorationColor = "green";
};
</script>
<p>Test that changes in text-decoration-color are recalculated correctly. PASS
if the text below has a solid green underline, and no red.</p>
<div id="target">
Filler text
</div>