blob: f473dd1dd016834a03f4eb875438944eaf1857f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<html>
<head>
<link rel="stylesheet" href="fake.css" type="text/css" >
<script>
if (window.testRunner) {
testRunner.dumpAsText();
}
function testForm() {
if (document.LoginForm)
{
alert("Test passed: " + document.LoginForm);
}
else
{
alert("Test failed: " + document.LoginForm);
}
}
</script>
</head>
<body onLoad="testForm();">
<form name="LoginForm">
<embed src="" type="application/x-shockwave-flash"></embed>
</form>
</body>
</html>
|