Hi to all, I started to work on webkit for my exam and I have one problem. This problem is related to the CSS parsing. When the css properties for exmple nav-up or nav-down are declared in the html I can test if element has these properties but when these properties are in css file it seems that they are "lost". Does anyone know where webkit stores css properties from the css files ? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Coa Coa wrote in post #967811:> Hi to all, > > I started to work on webkit for my exam and I have one problem. > > This problem is related to the CSS parsing. > > When the css properties for exmple nav-up or nav-down are declared in > the html I can test if element has these properties but when these > properties are in css file it seems that they are "lost". > > > Does anyone know where webkit stores css properties from the css files ?What does this have to do with Rails? Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org Sent from my iPhone -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
CSS styles declared in an element''s style attribute or in a CSS file should always be present in that DOM element''s .style attribute, regardless of where they are declared. nav-up and nav-down are both new CSS3 properties and I couldn''t find any info on Webkit''s support or lack there of of them, so I would make certain that Webkit does indeed parse and display these properly before tearing your hair out. An easy way to do that would be using the Inspector. On Dec 11, 10:09 am, Marnen Laibow-Koser <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Coa Coa wrote in post #967811: > > > Hi to all, > > > I started to work on webkit for my exam and I have one problem. > > > This problem is related to the CSS parsing. > > > When the css properties for exmple nav-up or nav-down are declared in > > the html I can test if element has these properties but when these > > properties are in css file it seems that they are "lost". > > > Does anyone know where webkit stores css properties from the css files ? > > What does this have to do with Rails? > > Best, > -- > Marnen Laibow-Koserhttp://www.marnen.org > mar...-sbuyVjPbboAdnm+yROfE0A@public.gmane.org > > Sent from my iPhone > > -- > Posted viahttp://www.ruby-forum.com/.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.