Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <?xml version="1.0"?>
2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
3 <?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>
4 <?xml-stylesheet href="data:text/css,
6 %23box {
7 background: blue;
8 }
10 %23box:-moz-window-inactive {
11 background: cyan;
12 }
14 " type="text/css"?>
15 <!--
16 Test for the :-moz-window-inactive pseudoclass
17 -->
18 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
19 sizemode="fullscreen">
21 <script type="application/javascript"
22 src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
24 <box id="box" height="100"/>
26 <script>
27 SimpleTest.waitForExplicitFinish();
29 newwindow = window.open("window_activation.xul", "_blank","chrome,width=300,height=200");
31 function complete()
32 {
33 newwindow.close();
34 SimpleTest.finish();
35 }
37 </script>
40 <body xmlns="http://www.w3.org/1999/xhtml" style="height: 300px; overflow: auto;"/>
42 </window>