summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/HTMLKeygenElement/keygen.html
blob: 59196ac61c58fba92819fc38b47854bcca27ca11 (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
27
<html>
<head>
<link rel="stylesheet" href="../../js/resources/js-test-style.css">
<script src="../../js/resources/js-test-pre.js"></script>
</head>
<body>
<keygen id="keys" />

<p id="description"></p>
<div id="console"></div>

<script>
if (window.layoutTestController)
    layoutTestController.dumpAsText();

function test(elementId)
{
    description('Tests the keygen element.');

    shouldBe('document.getElementById("keys").options', 'undefined');    
}

test("keys");
</script>

</body>
</html>