Re: [webkit-dev] Strange relation between script loading and call stack size

2008-07-10 Thread Fabian Jakobs
Geoffrey Garen schrieb:
 test.js

 I think you attached the wrong file. All I see is comments.


This file is only needed to have something I can load with a script tag.
The main code is in the attached HTML file. I have filed a bug at
https://bugs.webkit.org/show_bug.cgi?id=19956 about this issue.

Best Fabian

-- 
Fabian Jakobs
JavaScript Framework Developer

11 Internet AG
Brauerstraße 48
76135 Karlsruhe

Amtsgericht Montabaur HRB 6484

Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas 
Gottschlich, Matthias Greve, Robert Hoffmann, Markus Huhn, Oliver Mauss, 
Achim Weiss
Aufsichtsratsvorsitzender: Michael Scheeren


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Strange relation between script loading and call stack size

2008-07-09 Thread Fabian Jakobs

Hi,

I have a very strange problem with Safari 3.1.2 and WebKit nightly. We
use a loader script, which inserts script tags dynamically into the
header. Now I observe the strange behavior that doing so seems to limit
the available call stack size. We load many scripts ( 300) in a loop
this way and run into an call stack size exceeded error.

I have reduced the problem to the attached HTML, where you can see the
effect. Still I have problems interpreting the results. Safari 3.1.2
shows me a decrease of the available call stack size, while it does not
really work in the Nightly. What is happening inside of Safari there?

Once webkit.org is up again I'll file it as a bug as well.


Best Fabian

--
Fabian Jakobs
JavaScript Framework Developer

11 Internet AG
Brauerstraße 48
76135 Karlsruhe

Amtsgericht Montabaur HRB 6484

Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas 
Gottschlich, Matthias Greve, Robert Hoffmann, Markus Huhn, Oliver Mauss, 
Achim Weiss

Aufsichtsratsvorsitzender: Michael Scheeren












test.js
Description: application/javascript
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Rounded border rendering

2008-02-21 Thread Fabian Jakobs
Hi David,
 Please file two bugs on http://bugs.webkit.org/:

 - One for the rounded border rendering (with screenshots of both 
 Firefox and
 Safari).
   
done: http://bugs.webkit.org/show_bug.cgi?id=17468

 - One for supporting short-hand notation with -webkit-border-radius.
   
I am no longer sure about this one. The spec 
http://www.w3.org/TR/2005/WD-css3-background-20050216/#the-border-radius 
does not mention shorthand mode for border-radius. I don't even know how 
this is supposed to work since e.g. border-top-right-radius allows two 
values. One for the horizontal radius and one for the vertical radius. 
This would be be eight values for shorthand mode. Firefox can do it 
because they only support one radius per corner.

BTW the documentation for border-radius at 
http://developer.apple.com/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266-BoxModel
 
is incomplete. It does not mention that two radii for each corner can be 
specified.

Best Fabian

 Thanks!

 Dave


 Fabian Jakobs [EMAIL PROTECTED] wrote:

  
 Hi,

 I've been trying to implement cross browser rounded border support 
 for qooxdoo [1]. One thing I noticed was that webkit renders rounded 
 borders really strange if the border widths are different. The result 
 in firefox is much more pleasant. I have attached a small html test 
 file and screenshots in firefox 3 and webkit to illustrate it. I 
 couldn't  find any hints in the CSS3 draft of how rounded borders 
 should be rendered but I think the FF approach looks much better.

 Another issue is that the '-webkit-border-radius' does not support 
 the shorthand mode but '-moz-border-radius' does.

 Is this behaviour intended or should I report this as a bug?

 Best Fabian

 -- 
 Fabian Jakobs
 JavaScript Framework Developer

 11 Internet AG
 Brauerstraße 48
 76135 Karlsruhe

 Amtsgericht Montabaur HRB 6484

 Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas 
 Gauger,
 Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Markus Huhn, 
 Achim Weiss
 Aufsichtsratsvorsitzender: Michael Scheeren


 
 -
 Border Radius Test   #round {   
 margin: 30px;   width:
 100px;   height: 60px;  border-color: red 
 green blue purple;
border-style: solid;   border-width: 5px 10px 20px 
 10px; -moz-border-radius: 40px 10px 50px 
 20px;   /*
 -webkit-border-radius: 40px 10px 50px 20px;  DOES NOT WORK*/  
 -webkit-border-top-left-radius: 40px;  
 -webkit-border-top-right-radius: 10px;  
 -webkit-border-bottom-right-radius: 50px;  
 -webkit-border-bottom-left-radius: 20px;  
 background-color:
 gray;   } 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

 



   


-- 
Fabian Jakobs
JavaScript Framework Developer

11 Internet AG
Brauerstraße 48
76135 Karlsruhe

Amtsgericht Montabaur HRB 6484

Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas 
Gauger, Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Markus 
Huhn, Achim Weiss
Aufsichtsratsvorsitzender: Michael Scheeren


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Rounded border rendering

2008-02-20 Thread Fabian Jakobs

Hi,

I've been trying to implement cross browser rounded border support for 
qooxdoo [1]. One thing I noticed was that webkit renders rounded borders 
really strange if the border widths are different. The result in firefox 
is much more pleasant. I have attached a small html test file and 
screenshots in firefox 3 and webkit to illustrate it. I couldn't  find 
any hints in the CSS3 draft of how rounded borders should be rendered 
but I think the FF approach looks much better.


Another issue is that the '-webkit-border-radius' does not support the 
shorthand mode but '-moz-border-radius' does.


Is this behaviour intended or should I report this as a bug?

Best Fabian

--
Fabian Jakobs
JavaScript Framework Developer

11 Internet AG
Brauerstraße 48
76135 Karlsruhe

Amtsgericht Montabaur HRB 6484

Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas Gauger, 
Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Markus Huhn, Achim Weiss
Aufsichtsratsvorsitzender: Michael Scheeren

inline: round.pngTitle: Border Radius Test








___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] How to disable resize bahaviour for textfields?

2007-06-13 Thread Fabian Jakobs

Hi,

with Safari 3 textfields seem to be resizeable by default. Is there a 
way to disable this bahaviour using CSS or JavaScript?


BTW is there an official documentation for all WebKit CSS extensions? I 
have compiled a list from the sources here 
http://qooxdoo.org/documentation/general/webkit_css_styles but I am 
still not sure how they are used.


Thanks in advance,
Best Fabian
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev