blob: 22638a72622d3798154b5a985b90f2d25a2392c5 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../../../resources/js-test.js"></script>
<div id="target" style="text-decoration: underline;">This text should be underlined</div>
<script>
description("Test that computed style for text-decoration is correctly represented.");
var decoration = getComputedStyle(target).textDecoration;
shouldBe("decoration", "'underline solid rgb(0, 0, 0)'");
</script>