Wed, 31 Dec 2014 06:09:35 +0100
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=477531 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for Bug 477531</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 | |
michael@0 | 11 | <style type="text/css"> |
michael@0 | 12 | #s { |
michael@0 | 13 | margin-left: 10px; |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | #s:indeterminate { |
michael@0 | 17 | margin-left: 30px; |
michael@0 | 18 | } |
michael@0 | 19 | </style> |
michael@0 | 20 | </head> |
michael@0 | 21 | <body> |
michael@0 | 22 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=477531">Mozilla Bug 477531</a> |
michael@0 | 23 | <p id="display"></p> |
michael@0 | 24 | <div id="content"> |
michael@0 | 25 | |
michael@0 | 26 | <input type="checkbox" id="s" /> |
michael@0 | 27 | |
michael@0 | 28 | </div> |
michael@0 | 29 | <pre id="test"> |
michael@0 | 30 | <script class="testbody" type="text/javascript"> |
michael@0 | 31 | |
michael@0 | 32 | /** Test for Bug 477531 **/ |
michael@0 | 33 | is(document.defaultView.getComputedStyle($("s"), null).getPropertyValue("margin-left"), |
michael@0 | 34 | "10px", |
michael@0 | 35 | "Non-indeterminate checkbox should have a margin of 10px"); |
michael@0 | 36 | |
michael@0 | 37 | $("s").indeterminate = true; |
michael@0 | 38 | |
michael@0 | 39 | is(document.defaultView.getComputedStyle($("s"), null).getPropertyValue("margin-left"), |
michael@0 | 40 | "30px", |
michael@0 | 41 | "Indeterminate checkbox should have a margin of 30px"); |
michael@0 | 42 | |
michael@0 | 43 | $("s").setAttribute("type", "radio"); |
michael@0 | 44 | |
michael@0 | 45 | is(document.defaultView.getComputedStyle($("s"), null).getPropertyValue("margin-left"), |
michael@0 | 46 | "10px", |
michael@0 | 47 | "Only checkboxes should have indeterminate styles applied to them"); |
michael@0 | 48 | |
michael@0 | 49 | $("s").setAttribute("type", "checkbox"); |
michael@0 | 50 | |
michael@0 | 51 | is(document.defaultView.getComputedStyle($("s"), null).getPropertyValue("margin-left"), |
michael@0 | 52 | "30px", |
michael@0 | 53 | "Setting an indeterminate element to type checkbox should give it indeterminate styles"); |
michael@0 | 54 | |
michael@0 | 55 | $("s").indeterminate = false; |
michael@0 | 56 | |
michael@0 | 57 | is(document.defaultView.getComputedStyle($("s"), null).getPropertyValue("margin-left"), |
michael@0 | 58 | "10px", |
michael@0 | 59 | "Newly non-indeterminate checkbox should have a margin of 10px"); |
michael@0 | 60 | |
michael@0 | 61 | </script> |
michael@0 | 62 | </pre> |
michael@0 | 63 | </body> |
michael@0 | 64 | </html> |
michael@0 | 65 |