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

Side by Side Diff: LayoutTests/fast/css/link-alternate-stylesheet-4.html

Issue 20262002: [css3-text] Implement text-decoration property shorthand (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed expectation for last-minute, newly added tests in revision 155705 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 PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/ DTD/xhtml11.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/ DTD/xhtml11.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <link rel="stylesheet" href="resources/basic.css" type="text/css"> 4 <link rel="stylesheet" href="resources/basic.css" type="text/css">
5 <link rel="stylesheet" href="resources/small.css" type="text/css"> 5 <link rel="stylesheet" href="resources/small.css" type="text/css">
6 <link rel="stylesheet" href="resources/normal.css" type="text/css"> 6 <link rel="stylesheet" href="resources/normal.css" type="text/css">
7 <link rel="stylesheet" href="resources/high.css" title="Layout" type="text/css "> 7 <link rel="stylesheet" href="resources/high.css" title="Layout" type="text/css ">
8 <script src="../js/resources/js-test-pre.js"></script> 8 <script src="../js/resources/js-test-pre.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
11 <h1 id="firstH1">Alternate stylesheets</h1> 11 <h1 id="firstH1">Alternate stylesheets</h1>
12 12
13 <p id="textLine">This document has 4 stylesheets, with no alternate stylesheet s but the "high.css" stylesheet now 13 <p id="textLine">This document has 4 stylesheets, with no alternate stylesheet s but the "high.css" stylesheet now
14 has a title attribute.</p> 14 has a title attribute.</p>
15 15
16 <ul> 16 <ul>
17 <li>Have a red border at the top of the page</li> 17 <li>Have a red border at the top of the page</li>
18 <li>12px text</li> 18 <li>12px text</li>
19 </ul> 19 </ul>
20 20
21 <script> 21 <script>
22 description("Alternate stylesheet (link) title test 4"); 22 description("Alternate stylesheet (link) title test 4");
23 23
24 if (window.testRunner) 24 if (window.testRunner)
25 testRunner.dumpAsText(); 25 testRunner.dumpAsText();
26 26
27 window.onload = function () { 27 window.onload = function () {
28 element = document.getElementById("firstH1"); 28 element = document.getElementById("firstH1");
29 shouldBe("getComputedStyle(element).getPropertyValue('text-decoration')", "'none'"); 29 shouldBe("getComputedStyle(element).getPropertyValue('text-decoration')", "'none solid rgb(51, 51, 51)'");
30 30
31 element = document.getElementById("textLine"); 31 element = document.getElementById("textLine");
32 shouldBe("getComputedStyle(element).getPropertyValue('font-size')", "'12px '"); 32 shouldBe("getComputedStyle(element).getPropertyValue('font-size')", "'12px '");
33 33
34 shouldBe("getComputedStyle(document.body).getPropertyValue('border-top-col or')", "'rgb(139, 0, 0)'"); 34 shouldBe("getComputedStyle(document.body).getPropertyValue('border-top-col or')", "'rgb(139, 0, 0)'");
35 35
36 wasPostTestScriptParsed = true; 36 wasPostTestScriptParsed = true;
37 finishJSTest(); 37 finishJSTest();
38 } 38 }
39 </script> 39 </script>
40 40
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698