Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(448)

Unified Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-color-recalc.html

Issue 219633002: Proper support for multiple text decorations. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698