This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 121033
Collapse All | Expand All

(-)languages/css/src/org/netbeans/modules/languages/css/CSS_inlined.nbs (-1 / +3 lines)
Lines 80-86 Link Here
80
declarations2 = ;
80
declarations2 = ;
81
declaration = <GAP> | key ":" expr [prio];
81
declaration = <GAP> | key ":" expr [prio];
82
key = <css_identifier>;
82
key = <css_identifier>;
83
expr = <GAP> | term (operator term)*;
83
expr = gap | term (operator term)*;
84
gap = <GAP> ["pt" | "pc" | "in" | "mm" | "cm" | "em" |
85
      "ex" | "px" | "ms" | "s"];
84
term = ["-" | "+"] (<css_number> | <css_string> | <css_url> | <css_hash> | function);
86
term = ["-" | "+"] (<css_number> | <css_string> | <css_url> | <css_hash> | function);
85
operator = "/" | "," |;
87
operator = "/" | "," |;
86
function = <css_identifier> ["(" expr ")"];
88
function = <css_identifier> ["(" expr ")"];

Return to bug 121033