vote up 0 vote down star

I am working on a CMS that generates CSS "style='xyz'" statements from user input. The user input will be validated but as an additional safeguard, I want to check the validity of the values on generation of the CSS code.

If an invalid value is encountered - e.g. a relative width ("50%") where only absolute values are allowed due to layout restrictions - I would like to return a comment INSIDE the style attribute to help debugging:

<div class="content" style="background-color: lightblue; /* WIDTH was invalid: Only absolute values allowed here */; border: 1px orange dotted;">

Is this "safe", i.e. will all major browsers still parse the settings before and after the comment properly? It is difficult to Google information about this.

flag

2 Answers

vote up 1 vote down check

It is probably safe but I wouldn't put the wrong values commented into the markup.

Let the user know they did something wrong in the very beginning before you generate markup.

A good idea would be to create such a test case and feed it to the W3C validator to see what it would say says about it.

http://validator.w3.org/

link|flag
The user input will be validated separately. The commenting is rather meant as a help for me to detect errors while I set up the templates. I won't trust the construct only because W3C says it is valid but it still is a good Idea to do a test run - will do that. – Pekka Oct 23 at 12:06
I see you point. Still I wouldn't use this construct if one of two would turn true - either it wouldn't work reliably across browsers or W3C would say it is invalid. – Developer Art Oct 23 at 12:30
vote up 0 vote down

From the top of my head, IE supports it, Fx doesn't.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.