Re: [webkit-dev] WebGL not running on Mac

2011-09-02 Thread Ra Kyounga
You can set  Enable WebGL in Develop menu. 

If you cannot see Develop menu in menu bar
Check 
SafarI menu  Preference  Advanced  enable Show Develop menu in menu 
bar

Kyounga,

On 2011. 9. 2., at 오전 6:48, Won J Jeon wrote:

 Hi all,
 
 I downloaded the source code and build the updated WebKit by using 
 'Tools/Scripts/build-webkit' script on Mac.
 Following the instruction on enabling WebGL on Mac:
 defaults write com.apple.Safari WebKitWebGLEnabled -bool YES
 
 However, WebGL still doesn't work correctly. Whenever I retrieve WebGL pages, 
 it says:
 It doesn't appear your computer can support WebGL.
 
 WebGL is used to work with Safari but I'm not sure what causes this issue. 
 BTW, my execution environments are:
 OS: OS X 10.6.8
 WebKit: r94324
 Safari: 5.1 (6534.50, 535+)
 
 Regards,
 Won
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

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


Re: [webkit-dev] how about nav-up, nav-right, nav-down, nav-left in CSS3-ui ?

2011-08-11 Thread Ra Kyounga
Hi, CSS developers, 

1]I need correct the wrong information of previous email 
https://bugs.webkit.org/show_bug.cgi?id=66027

2] Opera support these properties.

3]
And, I need your help. 
I think I have to modify cssgrammar.y
I'm not familiar with lexyacc syntanx.

Let me explain it. 
According to the standard, the syntax is nav-up:#id attribute value
I just added new property name to CSSPropertyNames.in and checked if it works 
using CSSParser::parseValue(). 

It doesn't work as I expected.
Expected : string type, string value. 
Real : HexColor type(for example nav-up:#b1) or not parsed(nave-up:#foo)

In my guess, the css parser assumes that a css value (which starts with # ) 
should be a color value.
What should I do for my expected result?

Thank you in advance.
kyounga.

2011. 8. 11., 오전 10:55, Ra Kyounga 작성:

 Thank you for your reply.
 
 I just filed this bug. 
 https://bugs.webkit.org/show_bug.cgi?id=66207
 and I'll create patch as soon as I can.
 
 kyounga.
 2011. 8. 11., 오전 4:41, Antonio Gomes 작성:
 
 It sounds like a interesting idea.  Some questions:
 
 - Is there any other vendor implementing it?
 [kyounga] I'm wondering too.
 
 - How is it better than a good Spatial Navigation implementation (like 
 webkit's or opera's)? I see that it makes it possible to limit which 
 elements in the page are actually css-directionally-focusable...
 
 [kyounga] I think these property is new feature in addition to a spatial 
 navigation which browsers provide by default.
 If a element with nav-up:auto has focused and the user press up arrow 
 key, the browser use a spatial navigation, or if there is nav-up:#foo, the 
 browser send a focus the element with id=foo attribute. 
 
 
 On Tue, Aug 9, 2011 at 9:18 PM, Ra Kyounga kyounga...@gmail.com wrote:
 Hi, CSS developers.
 
 I'm wondering if anyone is trying to implement new css properties for 
 directional focus navgation. (nav-up, nav-right, nav-down, nav-left)
 They are defined in CSS3-ui module.
 http://www.w3.org/TR/css3-ui/#nav-dir
 
 Although, CSS3-UI standards has not been updated for long time,
 if there is no one to be addressed, I'd like to start to implement this 
 feature.
 
 I think we can re-use the function for a fragment link.
 
 How about my idea?
 or Is it better just to start implementation through bugs.webkit.org than 
 e-mail communication?
 
 Well, you should file a bug anyways, imo :).
 
 -- 
 --Antonio Gomes
 

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


Re: [webkit-dev] how about nav-up, nav-right, nav-down, nav-left in CSS3-ui ?

2011-08-10 Thread Ra Kyounga
Thank you for your reply.

I just filed this bug. 
https://bugs.webkit.org/show_bug.cgi?id=66207
and I'll create patch as soon as I can.

kyounga.
2011. 8. 11., 오전 4:41, Antonio Gomes 작성:

 It sounds like a interesting idea.  Some questions:
 
 - Is there any other vendor implementing it?
[kyounga] I'm wondering too.

 - How is it better than a good Spatial Navigation implementation (like 
 webkit's or opera's)? I see that it makes it possible to limit which elements 
 in the page are actually css-directionally-focusable...
 
[kyounga] I think these property is new feature in addition to a spatial 
navigation which browsers provide by default.
If a element with nav-up:auto has focused and the user press up arrow 
key, the browser use a spatial navigation, or if there is nav-up:#foo, the 
browser send a focus the element with id=foo attribute. 

 
 On Tue, Aug 9, 2011 at 9:18 PM, Ra Kyounga kyounga...@gmail.com wrote:
 Hi, CSS developers.
 
 I'm wondering if anyone is trying to implement new css properties for 
 directional focus navgation. (nav-up, nav-right, nav-down, nav-left)
 They are defined in CSS3-ui module.
 http://www.w3.org/TR/css3-ui/#nav-dir
 
 Although, CSS3-UI standards has not been updated for long time,
 if there is no one to be addressed, I'd like to start to implement this 
 feature.
 
 I think we can re-use the function for a fragment link.
 
 How about my idea?
 or Is it better just to start implementation through bugs.webkit.org than 
 e-mail communication?
 
 Well, you should file a bug anyways, imo :).
 
 -- 
 --Antonio Gomes

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


[webkit-dev] how about nav-up, nav-right, nav-down, nav-left in CSS3-ui ?

2011-08-09 Thread Ra Kyounga
Hi, CSS developers.

I'm wondering if anyone is trying to implement new css properties for 
directional focus navgation. (nav-up, nav-right, nav-down, nav-left)
They are defined in CSS3-ui module. 
http://www.w3.org/TR/css3-ui/#nav-dir

Although, CSS3-UI standards has not been updated for long time,  
if there is no one to be addressed, I'd like to start to implement this 
feature. 

I think we can re-use the function for a fragment link. 

How about my idea?
or Is it better just to start implementation through bugs.webkit.org than 
e-mail communication? 

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


Re: [webkit-dev] XHTMLMP support

2011-03-08 Thread Ra Kyounga
Currently, XHTMLMP is used in webkit browser for mobile business. 

So, I think it's good to leave it for a while :)   

2011. 3. 8., 오전 5:09, Eric Seidel 작성:

 Are any ports still using that?  Or should we remove it.
 
 If so, happy to leave it in.  But if no ports are actively using it,
 its best to remove the code (and restore it from SVN history later if
 someone needs it again).
 
 -eric
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

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


Re: [webkit-dev] XHTMLMP support

2011-03-08 Thread Ra Kyounga
I'm not sure any product using it is released officially. 
but, I think mobile industry want it. currently. 

Or, how about HTC freestyle? 

2011. 3. 9., 오전 9:46, James Robinson 작성:

 Which WebKit browser is using XHTMLMP?
 
 - James
 
 On Tue, Mar 8, 2011 at 4:43 PM, Ra Kyounga kyounga...@gmail.com wrote:
 Currently, XHTMLMP is used in webkit browser for mobile business.
 
 So, I think it's good to leave it for a while :)
 
 2011. 3. 8., 오전 5:09, Eric Seidel 작성:
 
  Are any ports still using that?  Or should we remove it.
 
  If so, happy to leave it in.  But if no ports are actively using it,
  its best to remove the code (and restore it from SVN history later if
  someone needs it again).
 
  -eric
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 

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