|
1 <?xml version="1.0"?> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg"> |
|
3 <!-- |
|
4 https://bugzilla.mozilla.org/show_bug.cgi?id=450930 |
|
5 --> |
|
6 <head> |
|
7 <title>Test for Bug 450930 (MozAfterPaint)</title> |
|
8 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
|
9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
|
10 </head> |
|
11 <body> |
|
12 <pre id="test"> |
|
13 <script class="testbody" type="text/javascript"><![CDATA[ |
|
14 |
|
15 /** Test for Bug 450930 **/ |
|
16 SimpleTest.waitForExplicitFinish(); |
|
17 var subwindow = window.open("./bug450930.xhtml", "bug450930", "width=800,height=1000"); |
|
18 |
|
19 function finishTests() { |
|
20 subwindow.close(); |
|
21 SimpleTest.finish(); |
|
22 } |
|
23 |
|
24 ]]></script> |
|
25 </pre> |
|
26 </body> |
|
27 </html> |
|
28 |