Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Unified Diff: sky/engine/core/css/parser/CSSGrammar.y

Issue 788113002: Simplify HTMLStyleElement. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/css/parser/BisonCSSParser-in.cpp ('k') | sky/engine/core/dom/Element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/parser/CSSGrammar.y
diff --git a/sky/engine/core/css/parser/CSSGrammar.y b/sky/engine/core/css/parser/CSSGrammar.y
index 86f8c6f085ea2f5387b3a9e0804a27ccdf6f28d8..acc1b19b038568e2d7e14c72e2606395e241deec 100644
--- a/sky/engine/core/css/parser/CSSGrammar.y
+++ b/sky/engine/core/css/parser/CSSGrammar.y
@@ -766,7 +766,6 @@ keyframes_rule:
keyframe_rule_list:
/* empty */ {
$$ = parser->createFloatingKeyframeVector();
- parser->resumeErrorLogging();
}
| keyframe_rule_list keyframe_rule maybe_space location_label {
$$ = $1;
@@ -774,7 +773,6 @@ keyframe_rule_list:
}
| keyframe_rule_list keyframes_error_recovery invalid_block maybe_space location_label {
parser->clearProperties();
- parser->resumeErrorLogging();
}
;
@@ -1427,7 +1425,6 @@ regular_invalid_at_rule_header:
parser->popSupportsRuleData();
}
| error_location invalid_at at_rule_header_recovery {
- parser->resumeErrorLogging();
parser->reportError($1, InvalidRuleCSSError);
}
;
« no previous file with comments | « sky/engine/core/css/parser/BisonCSSParser-in.cpp ('k') | sky/engine/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698