Closed
Bug 782146
Opened 12 years ago
Closed 12 years ago
Missing elements on lebonforfait.fr
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla17
Tracking | Status | |
---|---|---|
firefox17 | - | --- |
People
(Reporter: mathieu.marquer, Assigned: bhackett1024)
References
Details
(Keywords: regression)
Attachments
(1 file)
1.12 KB,
patch
|
luke
:
review+
|
Details | Diff | Splinter Review |
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Firefox/17.0
Build ID: 20120812030538
Steps to reproduce:
Go on http://www.lebonforfait.fr/comparateur.html and move the cursors
Actual results:
The "results" area on the right appears empty
Expected results:
A list of results should appear. Not sure when the bug appeared, works OK on the latest stable release
Comment 1•12 years ago
|
||
Regrwssion window(m-c)
Good:
http://hg.mozilla.org/mozilla-central/rev/1bbc0b65dffb
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 ID:20120807030518
Bad:
http://hg.mozilla.org/mozilla-central/rev/2637d896de91
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 ID:20120807063927
Pushlog:
http://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=1bbc0b65dffb&tochange=2637d896de91
Regrwssion window(m-i)
Good:
http://hg.mozilla.org/integration/mozilla-inbound/rev/b4a63a0b90c2
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 ID:20120806153305
Bad:
http://hg.mozilla.org/integration/mozilla-inbound/rev/89ea9764f9e9
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 ID:20120806140630
Pushlog:
http://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=b4a63a0b90c2&tochange=89ea9764f9e9
In local build
Last Good: f3bd764deb31
First Bad: 684958bd600b
Triggered by: 684958bd600b Brian Hackett — Generate ICs which see through ListBase proxies, bug 769911. r=peterv,dvander
Assignee: nobody → general
Blocks: 769911
tracking-firefox17:
--- → ?
Component: Untriaged → JavaScript Engine
Keywords: regression
OS: Linux → All
Product: Firefox → Core
Comment 2•12 years ago
|
||
An error in error console:
Error: TypeError: document.forms.formulaire is undefined
Source file: http://www.lebonforfait.fr/scripts/Forfait.js
Line: 57
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 3•12 years ago
|
||
In adittion to comment #1,
bug 769911 was backed out and landing again as follows.
bad
http://hg.mozilla.org/integration/mozilla-inbound/rev/4129a9d0f887
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 ID:20120806143827
Working again:
http://hg.mozilla.org/integration/mozilla-inbound/rev/1184b4442755
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 ID:20120806154026
Working again Pushlog:
http://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=4129a9d0f887&tochange=1184b4442755
Working:
http://hg.mozilla.org/integration/mozilla-inbound/rev/cf99db30a20c
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 ID:20120806165827
Broken again:
http://hg.mozilla.org/integration/mozilla-inbound/rev/0127c9c41bf2
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 ID:20120806175526
Broken again Pushlog:
http://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=cf99db30a20c&tochange=0127c9c41bf2
Assignee | ||
Comment 4•12 years ago
|
||
When the patch for bug 769911 was written, it depended for correctness on the fact that we didn't generate ICs for missing properties on the prototype chain, as ListBase proxies will search elsewhere if the prototype lookup fails. Before the bug landed, bug 777630 added a missing prop IC, and I didn't update bug 769911 before landing. This path disables the missing prop IC for Listbase proxies.
Assignee: general → bhackett1024
Attachment #651378 -
Flags: review?(luke)
Comment 5•12 years ago
|
||
Could you explain a bit more? Normally, proxies won't get a missing-prop ic b/c ProxyClass.getProperty != JS_PropertyStub; why doesn't the ListBase proxy hit this? Is this constraint imposed by other IC code or by the ListBase proxy implementation?
Assignee | ||
Comment 6•12 years ago
|
||
Actually, Proxy classes have a default getProperty hook, just the class operations are custom (as they are for all non native classes).
Comment 7•12 years ago
|
||
Comment on attachment 651378 [details] [diff] [review]
disable missing prop IC for ListBase proxies
Interesting. This leads to the question "why didn't the aobj->isNative() check above in lookup() catch this?". The answer is: because, in the special case of ListBase, the isNative() check was performed on ListBase's prototype, not the ListBase. This suggests using the condition "!obj->isNative()" instead of IsCacheableListBase(obj) which has the benefit that it is obvious why this condition is necessary and more future proof against this type of bug. r+ if you agree.
Attachment #651378 -
Flags: review?(luke) → review+
Assignee | ||
Comment 8•12 years ago
|
||
Comment 9•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla17
Updated•12 years ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•