summaryrefslogtreecommitdiff
path: root/Source/WebCore/css/CSSGrammar.y
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/css/CSSGrammar.y')
-rw-r--r--Source/WebCore/css/CSSGrammar.y6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/WebCore/css/CSSGrammar.y b/Source/WebCore/css/CSSGrammar.y
index 705c36be0..a57edf3d1 100644
--- a/Source/WebCore/css/CSSGrammar.y
+++ b/Source/WebCore/css/CSSGrammar.y
@@ -1530,12 +1530,6 @@ calc_func_operator:
| '/' maybe_space {
$$ = '/';
}
- | IDENT maybe_space {
- if (equalIgnoringCase("mod", $1.characters, $1.length))
- $$ = '%';
- else
- $$ = 0;
- }
;
calc_func_paren_expr: