Difference between revisions of "Mozilla.dev.tech.js-engine"
(→FAQ) |
(→Weekly Summaries) |
||
Line 14: | Line 14: | ||
* [[Newsgroup summaries:mozilla.dev.tech.js-engine:2006-09-22| 2006-09-22]] | * [[Newsgroup summaries:mozilla.dev.tech.js-engine:2006-09-22| 2006-09-22]] | ||
* [[Newsgroup summaries:mozilla.dev.tech.js-engine:2006-09-29| 2006-09-29]] | * [[Newsgroup summaries:mozilla.dev.tech.js-engine:2006-09-29| 2006-09-29]] | ||
+ | * [[Newsgroup summaries:mozilla.dev.tech.js-engine:2006-09-29| 2006-10-06]] | ||
+ | * [[Newsgroup summaries:mozilla.dev.tech.js-engine:2006-09-29| 2006-10-13]] | ||
== FAQ == | == FAQ == |
Revision as of 11:36, 8 October 2006
Contents
- 1 Newsgroup
- 2 Authors
- 3 Weekly Summaries
- 4 FAQ
- 4.1 How long are private pointers?
- 4.2 Can I call functions in Mozilla extensions from web page?
- 4.3 Is there a specific issue with ActiveX and Instance Handling I am not aware of? What could I do to get it working, any ref material or hints?
- 4.4 Firefox does not ignore screenX (Y) parameters like IE does. By adding menuwd.moveTo(posX, posY); flicker is added to the screen. Is there any way to solve this?
- 4.5 Newly created threads in JS from MOZILLA_1_8_BRANCH causes to hang in Windows
- 4.6 How to determine Rhino version programatically
- 4.7 Can an embedded SpiderMonkey JS Engine use DOMParser extension of Mozilla
Newsgroup
JS-Engine on Google groups
Authors
- Dejan Tolj
- David Bertenshaw
Weekly Summaries
FAQ
How long are private pointers?
2-byte aligned check the JSVAL macros at the top of jsapi.h
Can I call functions in Mozilla extensions from web page?
No, accessing anything in the web page's script may lead to security problems.
Is there a specific issue with ActiveX and Instance Handling I am not aware of? What could I do to get it working, any ref material or hints?
A: No awnsers as of yet
A: No awnsers as of yet
Newly created threads in JS from MOZILLA_1_8_BRANCH causes to hang in Windows
This Patch should fix the problem.
After that, recompile JS and define JS_USE_ONLY_NSPR_LOCKS in the build.
How to determine Rhino version programatically
You can call getImplementationVersion() on a Context instance and it gives you a string
eg. Rhino 1.6 release 2 2005 09 19
Can an embedded SpiderMonkey JS Engine use DOMParser extension of Mozilla
DOMParser is not part of JS but part of Mozilla browser which makes it available to script in the browser using XPConnect. An alternative would be to use built-in E4X.