Closed
Bug 66464
Opened 25 years ago
Closed 25 years ago
crypto.version returns wrong string
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
VERIFIED
INVALID
People
(Reporter: junruh, Assigned: jst)
References
()
Details
1.) Visit the above url, (behind AOL firewall) and look at the top line.
What is expected: PSM version 1.4 is loaded!
What I see: PSM version 1.4,1.4, is loaded!
Here is the JS code:
<script language="javascript">
function init_title(){
if (typeof(crypto.version) == "undefined") {
document.write('<FONT COLOR=RED>PSM is not loaded</FONT>');
} else {
document.write('<b><font size=+2><FONT COLOR=RED>PSM version
</FONT></FONT></b>');
document.write('<b><font size=+2><FONT COLOR=RED>');
document.write(crypto.version);
document.write('</FONT></FONT>,</b>');
document.write('<b><font size=+2><FONT COLOR=RED> is loaded</FONT></FONT><b>');
}}
</script>
Comment 1•25 years ago
|
||
DOM, not engine --> DOM Level 0
This bug can also be reproduced by bringing up Mozilla and keying this
in the URL bar :
javascript: alert(crypto.version)
Assignee: rogerl → jst
Component: Javascript Engine → DOM Level 0
QA Contact: pschwartau → desale
Comment 2•25 years ago
|
||
The crypto.version string is formed by "<plug in version>,<daemon version>"
So what you're seeing is correct.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•