Closed
Bug 552391
Opened 15 years ago
Closed 15 years ago
Security Error in Chrome caused by cookie copying
Categories
(Skywriter Graveyard :: Embedded, defect, P1)
Tracking
(Not tracked)
RESOLVED
FIXED
0.7
People
(Reporter: dangoor, Assigned: pcwalton)
Details
From the mailing list:
when I try the provided samples, I get the following error and Bespin
does not load.
BespinEmbedded-DropIn-0.6.2/BespinEmbedded.js:55041
Uncaught Error: SECURITY_ERR: DOM Exception 18
Including the following line corrects that error:
if (key === "cookie") continue ;
----
(my notes now)
That is in:
SC.mapDisplayNames = function(obj, level, path, seenHash, seenArray) {
in core.js
I have confirmed that adding the line as specified does fix the problem.
if (key === "constructor") continue ;
if (key === "superclass") continue ;
if (key === "document") continue ;
if (key == "cookie") continue;
Assignee | ||
Comment 1•15 years ago
|
||
Fixed in local SproutCore repository as commit aaf6018fb9be697d8ba0be4f1a0cb035edfcdd05, will close the bug once the new snapshot is uploaded.
Status: NEW → ASSIGNED
Assignee | ||
Comment 2•15 years ago
|
||
Fixed SproutCore snapshot has been pushed as of changeset 1c80c113e684.
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•