summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_applet_attributes_reflection.html
blob: dd04a2022ee5d0eb7864539f3ca35401a1463788 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for HTMLAppletElement attributes reflection</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="reflect.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">

/** Test for HTMLAppletElement attributes reflection **/

// .align (String)
reflectString({
  element: document.createElement("applet"),
  attribute: "align",
});

// .alt (String)
reflectString({
  element: document.createElement("applet"),
  attribute: "alt",
});

// .archive (String)
reflectString({
  element: document.createElement("applet"),
  attribute: "archive",
});

// .code (String)
reflectString({
  element: document.createElement("applet"),
  attribute: "code",
});

// .codeBase (URL)
reflectURL({
  element: document.createElement("applet"),
  attribute: "codeBase",
});

// .height (String)
reflectString({
  element: document.createElement("applet"),
  attribute: "height",
});

// .hspace (unsigned int)
reflectUnsignedInt({
  element: document.createElement("applet"),
  attribute: "hspace",
});

// .name (String)
reflectString({
  element: document.createElement("applet"),
  attribute: "name",
});

// .object (URL)
reflectURL({
  element: document.createElement("applet"),
  attribute: "object",
});

// .vspace (unsigned int)
reflectUnsignedInt({
  element: document.createElement("applet"),
  attribute: "vspace",
});

// .width (String)
reflectString({
  element: document.createElement("applet"),
  attribute: "width",
});
</script>
</pre>
</body>
</html>