1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/tests/test_bug450930.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<?xml version="1.0"?> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg"> 1.6 +<!-- 1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=450930 1.8 +--> 1.9 +<head> 1.10 + <title>Test for Bug 450930 (MozAfterPaint)</title> 1.11 + <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> 1.12 + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> 1.13 +</head> 1.14 +<body> 1.15 +<pre id="test"> 1.16 +<script class="testbody" type="text/javascript"><![CDATA[ 1.17 + 1.18 +/** Test for Bug 450930 **/ 1.19 +SimpleTest.waitForExplicitFinish(); 1.20 +var subwindow = window.open("./bug450930.xhtml", "bug450930", "width=800,height=1000"); 1.21 + 1.22 +function finishTests() { 1.23 + subwindow.close(); 1.24 + SimpleTest.finish(); 1.25 +} 1.26 + 1.27 +]]></script> 1.28 +</pre> 1.29 +</body> 1.30 +</html> 1.31 +