Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / link-alternate-stylesheet-3.html
blobc69d270a4f8c1ba00485ffe6d9ceb0b1aee6587a
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>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <link rel="stylesheet" href="resources/basic.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">
7 <link rel="alternate stylesheet" href="resources/high.css" title="Different layout" type="text/css">
8 <script src="../../resources/js-test.js"></script>
9 </head>
10 <body>
11 <h1 id="firstH1">Alternate stylesheets</h1>
13 <p id="textLine">This document has 3 stylesheets, with 1 alternate stylesheet which now has the added <code>title</code>
14 attribute. It should:</p>
16 <ul>
17 <li>Have a green border at the top of the page</li>
18 <li>An underlined <code>H1</code></li>
19 <li>12px text</li>
20 </ul>
22 <script>
23 description("Alternate stylesheet (link) title test 3");
25 if (window.testRunner)
26 testRunner.dumpAsText();
28 window.onload = function () {
29 element = document.getElementById("firstH1");
30 shouldBe("getComputedStyle(element).getPropertyValue('text-decoration')", "'underline solid rgb(51, 51, 51)'");
32 element = document.getElementById("textLine");
33 shouldBe("getComputedStyle(element).getPropertyValue('font-size')", "'12px'");
35 shouldBe("getComputedStyle(document.body).getPropertyValue('border-top-color')", "'rgb(0, 128, 0)'");
37 wasPostTestScriptParsed = true;
38 finishJSTest();
40 </script>
42 </body>
43 </html>