Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-recalc.html

Issue 189603010: Incorrect style recalc for text-decoration-[style, color] for immediate child text nodes. (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.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 <!doctype html>
2 <style>
3 div {
4 font-size: 50px;
5 text-decoration: underline solid green;
6 }
7 </style>
8 <script>
9 window.addEventListener("load", function() {
10 target.style["textDecorationStyle"] = "dashed";
11 });
12 </script>
13 <div id="target">
14 Filler text
15 </div>
OLDNEW

Powered by Google App Engine