Index: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line-recalc.html |
diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line-recalc.html b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line-recalc.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4e243cfeb34179ff49b591f50a5f21d01471aeee |
--- /dev/null |
+++ b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line-recalc.html |
@@ -0,0 +1,15 @@ |
+<!doctype html> |
+<style> |
+ div { |
+ font-size: 50px; |
+ text-decoration: underline solid green; |
+ } |
+</style> |
+<script> |
+ onload = function() { |
+ target.style.textDecorationLine = "overline"; |
+ }; |
+</script> |
+<div id="target"> |
+ Filler text |
+</div> |