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

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

Issue 280503003: Fix incorrect style recalculation of text-decoration properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address review issues. Created 6 years, 7 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 green;
6 }
7 </style>
8 <script>
9 onload = function() {
10 target.style.textDecorationStyle = "dashed";
11 };
12 </script>
13 <p>Test that changes in text-decoration-style are recalculated correctly. PASS
14 if the text below has a dashed green underline, and not a solid green underline. </p>
15 <div id="target">
16 Filler text
17 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698