Re: [webkit-dev] Platform specific fields on WebCore::HistoryItem

2010-12-21 Thread Yael.Aharon
From: webkit-dev-boun...@lists.webkit.org [mailto:webkit-dev-boun...@lists.webkit.org] On Behalf Of ext Darin Fisher Sent: Tuesday, December 21, 2010 2:39 PM To: WebKit Development Subject: [webkit-dev] Platform specific fields on WebCore::HistoryItem I'm working on fixing some session history

[webkit-dev] Order of positioned elements

2010-10-26 Thread Yael.Aharon
Hi, I am working on improving the spatial algorithm in webkit, and I have a problem with positioned elements that do not have a z-index defined. If I have 2 elements that are intersecting, I need to find out which element is covering the other. Is it safe to assume that the last element in tree

Re: [webkit-dev] Limiting the size of LocalStorage

2008-12-04 Thread Yael.Aharon
I'd be happy to fix this bug and submit a patch when I am done. Before I can do that, I have a question - why is LocalStorgare created and tracked per page group and not per process, like offline storage databases are? Thanks, Yael -Original Message- From: ext Darin Adler

Re: [webkit-dev] Limiting the size of LocalStorage

2008-11-25 Thread Yael.Aharon
Should I file a bug about it? Thanks, Yael -Original Message- From: ext Darin Adler [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2008 1:13 AM To: Aharon Yael (Nokia-D-MSW/Boston) Cc: webkit-dev@lists.webkit.org Subject: Re: [webkit-dev] Limiting the size of LocalStorage On Nov

Re: [webkit-dev] Limiting the size of LocalStorage

2008-11-24 Thread Yael.Aharon
Thanks Darin, Does DatabaseTracker control LocalStorage too, or only offline SQLite databases? In my QT build, the callback did not seem to arrive to ChromeClientQt. Thanks, Yael -Original Message- From: ext Darin Adler [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2008 8:40 PM

Re: [webkit-dev] Limiting the size of LocalStorage

2008-11-24 Thread Yael.Aharon
The sample script below would create any arbitrary size of database.. htmlheadscript function makeStringOfLength(n) { var str = X; while (str.length n) str += ((str.length 1) n ? str : makeStringOfLength(n - str.length)); return str; } function setthesize() { var i =