[Webkit-unassigned] [Bug 8974] REGRESSION: notes cannot be created at google/notebook

bugzilla-daemon at opendarwin.org bugzilla-daemon at opendarwin.org
Tue Jul 18 21:59:29 PDT 2006


http://bugzilla.opendarwin.org/show_bug.cgi?id=8974





------- Comment #5 from mjs at apple.com  2006-07-18 21:59 PDT -------
The reason this is failing is that Google Notebook now thinks TOT Safari is
Mozilla, so it uses designMode instead of contentEditable, which fails
grievously. The reason is they use this check for Mozilla:

    return this.Run(document.implementation &&
document.implementation.createDocument && !document.contains) != false;

and this for Safari:

    return this.Run(document.implementation &&
document.implementation.createDocument && document.contains) != false;

Safari used to have document.contains on the Document node as a weird
Safari-specific quirk (for some reason contains was implemented on Node instead
of Element) but we have now fixed this. I think the right action is to ask
Google to fix this on their end.


-- 
Configure bugmail: http://bugzilla.opendarwin.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list