OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 function print(message) | 4 function print(message) |
5 { | 5 { |
6 var paragraph = document.createElement("p"); | 6 var paragraph = document.createElement("p"); |
7 paragraph.appendChild(document.createTextNode(message)); | 7 paragraph.appendChild(document.createTextNode(message)); |
8 document.getElementById("console").appendChild(paragraph); | 8 document.getElementById("console").appendChild(paragraph); |
9 } | 9 } |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 </script> | 27 </script> |
28 </head> | 28 </head> |
29 <body onload="test()"> | 29 <body onload="test()"> |
30 <p>This test checks for a regression against <i>rdar://problem/4214080 document.
embeds: embeds[0].Play() undefined at languageguide.org</i>.</p> | 30 <p>This test checks for a regression against <i>rdar://problem/4214080 document.
embeds: embeds[0].Play() undefined at languageguide.org</i>.</p> |
31 <p>Each test below states its expected outcome.</p> | 31 <p>Each test below states its expected outcome.</p> |
32 <hr> | 32 <hr> |
33 <div id="console"></div> | 33 <div id="console"></div> |
34 | 34 |
35 <OBJECT | 35 <OBJECT |
36 id="myO" | 36 id="myO" |
37 classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" | 37 type="audio/mp4" |
38 width = 0 height = 0 | 38 width = 0 height = 0 |
39 > | 39 > |
40 <PARAM name="src" value="resources/articles.m4a"> | 40 <PARAM name="src" value="resources/articles.m4a"> |
41 <PARAM name="autostart" value="false"> | 41 <PARAM name="autostart" value="false"> |
42 | 42 |
43 <EMBED | 43 <EMBED |
44 id="myE" | 44 id="myE" |
45 src="resources/articles.m4a" | 45 src="resources/articles.m4a" |
46 autostart="false" | 46 autostart="false" |
47 enablejavascript="true" | 47 enablejavascript="true" |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 <embed | 93 <embed |
94 id="myE5" | 94 id="myE5" |
95 src="resources/articles.m4a" | 95 src="resources/articles.m4a" |
96 autostart="false" | 96 autostart="false" |
97 enablejavascript="true" | 97 enablejavascript="true" |
98 width = 0 height = 0 | 98 width = 0 height = 0 |
99 > | 99 > |
100 | 100 |
101 <object | 101 <object |
102 name="Plugin" | 102 name="Plugin" |
103 classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" | 103 type="audio/mp4" |
104 width = 0 height = 0 | 104 width = 0 height = 0 |
105 > | 105 > |
106 <param name="src" value="resources/articles.m4a"> | 106 <param name="src" value="resources/articles.m4a"> |
107 <param name="autostart" value="false"> | 107 <param name="autostart" value="false"> |
108 <param name="enablejavascript" value="true"> | 108 <param name="enablejavascript" value="true"> |
109 | 109 |
110 <embed | 110 <embed |
111 name="Plugin" | 111 name="Plugin" |
112 src="resources/articles.m4a" | 112 src="resources/articles.m4a" |
113 autostart="false" | 113 autostart="false" |
114 enablejavascript="true" | 114 enablejavascript="true" |
115 width = 0 height = 0 | 115 width = 0 height = 0 |
116 > | 116 > |
117 </embed> | 117 </embed> |
118 </object> | 118 </object> |
119 | 119 |
120 <object name="Plugin2"> | 120 <object name="Plugin2"> |
121 <embed | 121 <embed |
122 name="Plugin2" | 122 name="Plugin2" |
123 src="resources/articles.m4a" | 123 src="resources/articles.m4a" |
124 autostart="false" | 124 autostart="false" |
125 enablejavascript="true" | 125 enablejavascript="true" |
126 width = 0 height = 0 | 126 width = 0 height = 0 |
127 > | 127 > |
128 </embed> | 128 </embed> |
129 </object> | 129 </object> |
130 | 130 |
131 </body> | 131 </body> |
132 </html> | 132 </html> |
OLD | NEW |