layout/generic/test/test_bug323656.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html>
michael@0 3 <!--
michael@0 4 https://bugzilla.mozilla.org/show_bug.cgi?id=323656
michael@0 5 -->
michael@0 6 <head>
michael@0 7 <title>Test for Bug 323656</title>
michael@0 8 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
michael@0 10 <style>
michael@0 11 /**
michael@0 12 * The idea is that "color" inherits by default while "border-color" does
michael@0 13 * not. So if the former is red and the latter is green on a parent, and
michael@0 14 * the child's border-color is set to "inherit", it'll be green only if
michael@0 15 * the child is inheriting from the parent. If not, it'll either be
michael@0 16 * whatever the border-color is on what it's inheriting from, which will
michael@0 17 * be red if what it's inheriting from has the default (currentColor)
michael@0 18 *border-color).
michael@0 19 */
michael@0 20
michael@0 21 /* 't' for "test" */
michael@0 22 #display, #display *
michael@0 23 { color: red; border: 0px hidden red; background: transparent }
michael@0 24 #display .t { border-color: green }
michael@0 25 #display .t > :first-child
michael@0 26 { border-color: inherit; border-style: solid; border-width: 10px }
michael@0 27 </style>
michael@0 28 </head>
michael@0 29 <body>
michael@0 30 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=323656">Mozilla Bug 323656</a>
michael@0 31 <p id="display">
michael@0 32 <select size="1" class="t">
michael@0 33 <option id="testOption"></option>
michael@0 34 </select>
michael@0 35 </p>
michael@0 36 <div id="content" style="display: none">
michael@0 37
michael@0 38 </div>
michael@0 39 <pre id="test">
michael@0 40 <script class="testbody" type="text/javascript">
michael@0 41
michael@0 42 /** Test for Bug 323656 **/
michael@0 43 var s = document.defaultView.getComputedStyle($("testOption"), "");
michael@0 44 is(s.borderRightColor, "rgb(0, 128, 0)", "Inheritance broken");
michael@0 45
michael@0 46
michael@0 47 </script>
michael@0 48 </pre>
michael@0 49 </body>
michael@0 50 </html>
michael@0 51

mercurial