|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <meta charset="UTF-8"/> |
|
5 <title>Test for Bug 986930</title> |
|
6 <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
|
7 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
|
8 <script type="application/javascript" src="utils.js"></script> |
|
9 </head> |
|
10 <body> |
|
11 <script class="testbody" type="application/javascript"> |
|
12 var testPlugin = getTestPlugin("Test Plug-in"); |
|
13 |
|
14 var mimeDescriptions = testPlugin.getMimeDescriptions({}); |
|
15 |
|
16 is(mimeDescriptions[0], "Test \u2122 mimetype", |
|
17 "Plugin should handle non-ascii mime description"); |
|
18 </script> |
|
19 </body> |
|
20 </html> |