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..d3a96cbb61fd961d859ff572b3fb124f366fdf33 |
--- /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> |
+ window.addEventListener("load", function() { |
esprehn
2014/03/31 17:41:24
ditto.
|
+ target.style["textDecorationLine"] = "overline"; |
esprehn
2014/03/31 17:41:24
.textDecorationLine, you don't need the quotes or
|
+ }); |
+</script> |
+<div id="target"> |
+ Filler text |
+</div> |