mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-10 05:47:04 +00:00
Bug 366312: fixing document.all detecting regression from bug 365608. r=brendan
This commit is contained in:
parent
383deae9a7
commit
f1e30ac704
@ -3135,10 +3135,10 @@ Detecting(JSContext *cx, jsbytecode *pc)
|
||||
|
||||
default:
|
||||
/*
|
||||
* At this point, anything but grouping means we're not detecting
|
||||
* unless we see an extended atom index prefix.
|
||||
* At this point, anything but an extended atom index prefix means
|
||||
* we're not detecting.
|
||||
*/
|
||||
if (js_CodeSpec[op].format & JOF_ATOMBASE)
|
||||
if (!(js_CodeSpec[op].format & JOF_ATOMBASE))
|
||||
return JS_FALSE;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user