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

Side by Side 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, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <style>
3 div {
4 font-size: 50px;
5 text-decoration: underline solid red;
6 }
7 </style>
8 <script>
9 window.addEventListener("load", function() {
esprehn 2014/03/31 17:41:24 onload = function() {
10 target.style["textDecorationColor"] = "green";
11 });
12 </script>
13 <div id="target">
14 Filler text
15 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698