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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-line.html

Issue 22414006: Revert "Revert "[css3-text] Implement text-decoration property shorthand"" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added missing skipped test to TestExpectations Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <!-- Bugzilla link: http://webkit.org/b/94480 --> 4 <!-- Bugzilla link: http://webkit.org/b/94480 -->
5 <title>CSS Test: CSS3 text-decoration-line repaint</title> 5 <title>CSS Test: CSS3 text-decoration-line repaint</title>
6 <link rel="help" href="http://http://dev.w3.org/csswg/css3-text/#text-de coration-line"/> 6 <link rel="help" href="http://http://dev.w3.org/csswg/css3-text/#text-de coration-line"/>
7 <meta name="flags" content="ahem"/> 7 <meta name="flags" content="ahem"/>
8 <script> 8 <script>
9 if (window.testRunner) 9 if (window.testRunner)
10 testRunner.dumpAsText(true); 10 testRunner.dumpAsText(true);
(...skipping 21 matching lines...) Expand all
32 <p><span id="test-line-through" style="text-decoration: none;">&gt; &lt; </span></p> 32 <p><span id="test-line-through" style="text-decoration: none;">&gt; &lt; </span></p>
33 <p><span id="test-blink" style="text-decoration: none;">&gt; &lt;</span> </p> 33 <p><span id="test-blink" style="text-decoration: none;">&gt; &lt;</span> </p>
34 <p><span id="test-all" style="text-decoration: none;">&gt; &lt;</span></ p> 34 <p><span id="test-all" style="text-decoration: none;">&gt; &lt;</span></ p>
35 35
36 <!-- Parent value is not set, so fallback to initial "none" value. --> 36 <!-- Parent value is not set, so fallback to initial "none" value. -->
37 <p><span id="test-invalid-inherit" style="text-decoration: underline;">& gt; &lt;</span></p> 37 <p><span id="test-invalid-inherit" style="text-decoration: underline;">& gt; &lt;</span></p>
38 38
39 <!-- Explicit 'initial' value computed style is 'none'. --> 39 <!-- Explicit 'initial' value computed style is 'none'. -->
40 <p><span id="test-initial-explicit" style="text-decoration: underline;"> &gt; &lt;</span></p> 40 <p><span id="test-initial-explicit" style="text-decoration: underline;"> &gt; &lt;</span></p>
41 41
42 <!-- Empty value treated as invalid, so fallback to last valid value "un derline". --> 42 <!-- Empty value overwrites previous "underline". -->
43 <p><span id="test-initial-empty" style="text-decoration: underline;">&gt ; &lt;</span></p> 43 <p><span id="test-initial-empty" style="text-decoration: underline;">&gt ; &lt;</span></p>
44 44
45 <!-- Ancestor inherits "text-decoration-line" value from parent on repai ntTest(). --> 45 <!-- Ancestor inherits "text-decoration-line" value from parent on repai ntTest(). -->
46 <p><span id="test-parent"><span>&gt; &lt;</span></span></p> 46 <p><span id="test-parent"><span>&gt; &lt;</span></span></p>
47 47
48 <!-- Ancestor overwrites parent value on repaintTest(). --> 48 <!-- Ancestor overwrites parent value on repaintTest(). -->
49 <p><span style="text-decoration-style: underline;"><span id="test-ancest or">&gt; &lt;</span></span></p> 49 <p><span style="text-decoration-style: underline;"><span id="test-ancest or">&gt; &lt;</span></span></p>
50 </body> 50 </body>
51 </html> 51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698