[Webkit-unassigned] [Bug 17129] Incorrect style resolution in CSS styled SVG, with multiple style sheets

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Apr 5 13:26:25 PDT 2008


http://bugs.webkit.org/show_bug.cgi?id=17129





------- Comment #5 from eric at webkit.org  2008-04-05 13:26 PDT -------
(From update of attachment 20353)
Oh, one style comment.

single line ifs, the contents should be on the second line:
if (foo) return;
should be:
if (foo)
    return;

Also, if you're going to use:
if (foo != true) instead of the normal if (!foo) for that case, then you should
use:
if (foo !== true) to actually check the type returned.  Otherwise:
if (foo) or if (!foo) is doing the same thing and should be used instead.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list