Closed
Bug 661
Opened 26 years ago
Closed 25 years ago
navigator.mimetypes array does not work (blocked on with(document))
Categories
(Core :: DOM: Core & HTML, defect, P1)
Core
DOM: Core & HTML
Tracking
()
VERIFIED
FIXED
M6
People
(Reporter: angus, Assigned: beard)
References
()
Details
(Whiteboard: handing back (1223 fixed))
I can't seem to get plug-ins to work on release builds on win95. Perhaps this is
a known issue ... making note of it here anyway.
What I *do* see in place of a plug-in is a rectangle that never repaints where
the plug-in should be.
Status: NEW → RESOLVED
Closed: 26 years ago
Component: Unknown → Plug-ins
Resolution: --- → FIXED
while i won't guarantee that everything is well, they will now work as well in
release mode as they do in debug mode.
plug-ins don't appear to be working, so i'm reopening this bug.
i just see the gray rectangle with the "OBJECT" in it.
i tried this with the 11/30 build on NT and win95.
Updated•26 years ago
|
Status: NEW → ASSIGNED
Comment 4•26 years ago
|
||
There shouldn't be any difference between the debug and release builds.
ernie - are you still having problems? Are you sure you have the right plugins
installed?
Updated•26 years ago
|
Assignee: amusil → beard
Status: ASSIGNED → NEW
Component: Plug-ins → DOM
Priority: P2 → P1
Summary: Plug-ins don't work in release build → navigator.mimetypes array does not work
Comment 5•26 years ago
|
||
When I load this page, I don't get a gray rect - I get a jpg picture of "Chef".
If you look at the page source, you can see that they use JS to check the
mimetype array and determine if the Macromedia Flash plugin is installed. I do
not believe that this capability is currently working in Raptor.
Patrick - are you the guy who's supposed to make this work with the DOM?
Assignee | ||
Comment 6•26 years ago
|
||
Maybe. I'll look into this next week.
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Comment 8•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
QA contact re-assigned according to the product areas we're currently working
on.
Comment 10•26 years ago
|
||
Component updated to DOM Level 0.
Assignee | ||
Updated•26 years ago
|
Target Milestone: M4 → M5
Assignee | ||
Comment 11•26 years ago
|
||
moved to M5.
Assignee | ||
Updated•26 years ago
|
OS: Windows 95 → All
Hardware: PC → All
Assignee | ||
Comment 12•26 years ago
|
||
This should really be merged with bug #4592, since the same infrastructure has
to be added to fix both. Vidur would you also add
readonly attribute HTMLCollection mimeTypes;
to mozilla/dom/public/idl/base/Navigator.idl, and add stub implementations of
GetMimeTypes() and GetPlugins() to NavigatorImpl?
Assignee | ||
Comment 13•26 years ago
|
||
*** Bug 1015 has been marked as a duplicate of this bug. ***
Assignee | ||
Comment 14•25 years ago
|
||
I've implemented the feature for the most part, but with the potential for
duplicate entries in the mimeTypes array. We'll need to add additional methods
to nsIPluginHost to determine the active plugin for a particular MIME type.
Assignee | ||
Updated•25 years ago
|
Assignee: beard → desale
Status: ASSIGNED → NEW
Assignee | ||
Comment 15•25 years ago
|
||
Fixed bug, please test.
Comment 16•25 years ago
|
||
As soon as I visit the site "http://www.comedycentral.com/southpark/" apprunner
crashes.
Details:
Product: seamonkey [apprunner]
Build: 04/21/99
Platform: PC
OS: Windows-95.
Apprunner is crashing.
Updated•25 years ago
|
Assignee: desale → vidur
Comment 17•25 years ago
|
||
Actually somehow this bug was assigned to me, and since I'm not a developer I
need to reassign it to development team. Since its Dom Level-0, assgining it to
Vidur.
Updated•25 years ago
|
Assignee: vidur → beard
Comment 18•25 years ago
|
||
Oh, I think it should be assigned to Patrick Beard, since it was assigned to
same before. Sorry Vidur.
Assignee | ||
Updated•25 years ago
|
Assignee: beard → shaver
Summary: navigator.mimetypes array does not work → navigator.mimetypes array does not work (blocked on with(document))
Target Milestone: M5 → M6
Assignee | ||
Comment 19•25 years ago
|
||
This appears to be the same problem as bug # 1223. The problem occurs in the
frame document, "http://www.comedycentral.com/southpark/index2.tin" which has the
JavaScript function, MM_preloadImages(), which has has a "with(document)"
statement in it.
Vidur asks that we don't duplicate this bug, but when you fix 1223, this bug
should be fixed as well.
Updated•25 years ago
|
Status: NEW → ASSIGNED
Updated•25 years ago
|
Assignee: shaver → beard
Status: ASSIGNED → NEW
Whiteboard: handing back (1223 fixed)
Comment 20•25 years ago
|
||
1223 is fixed, so this goes back to Patrick.
Assignee | ||
Updated•25 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Updated•25 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago → 25 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 21•25 years ago
|
||
This page no longer refers to navigator.mimeTypes, so I can't verify fix from
here. I have simple tests that do show that the mimeTypes and plugins arrays are
working. Here's the simple test case that works for me.
<HTML>
<HEAD>
<SCRIPT>
function println(str)
{
document.write(str + "<BR>");
}
var plugins = navigator.plugins;
var len = plugins.length;
println("plugins.length = " + len);
if (len > 0) {
var p = plugins[0];
println("p.name = " + p.name);
len = p.length;
println("p.length = " + len);
if (len > 0) {
var m = p["application/x-java-applet"];
println("m.type = " + m.type);
if (m.enabledPlugin == p)
println("m.enabledPlugin == p");
}
}
var mimeTypes = navigator.mimeTypes;
len = mimeTypes.length;
println("mimeTypes.length = " + len);
</SCRIPT>
</HEAD>
</HTML>
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 22•25 years ago
|
||
Verified bug. Working fine on todays build [05-17-09]. Marking verified.
You need to log in
before you can comment on or make changes to this bug.
Description
•