views:

51

answers:

1

Round two. First was "How do I get all supported CSS properties in WebKit?".

I'm looking for magic CSSkeywords function:

CSSkeywords('float') --> ['left', 'right', 'none']
CSSkeywords('width') --> ['auto']
CSSkeywords('background') --> [
  ["repeat", "repeat-x", "repeat-y", "no-repeat"], 
  ["scroll", "fixed"], 
  ["top", "center", "bottom", "left"],
  /*regexp for color*/,
  /*regexp for url*/,
  "none"
]
A: 

You're going to have to write that yourself.

Azeem.Butt
You could have just left a comment...
J-P