1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/base/test/test_bug373181.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +<?xml version="1.0" encoding="UTF-8"?> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 + <head> 1.7 + <title>Testcase for bug 373181</title> 1.8 + <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"/> 1.9 + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 1.10 + <script type="application/x-javascript"> 1.11 + function onLoadFired() 1.12 + { 1.13 + ok(true, "Body onload event should fire"); 1.14 + SimpleTest.finish(); 1.15 + } 1.16 + SimpleTest.waitForExplicitFinish(); 1.17 + </script> 1.18 + </head> 1.19 + <body onload="onLoadFired();"/> 1.20 +</html>