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

Issue 121673002: Split out CSSParser public API (Closed)

Created:
6 years, 12 months ago by eseidel
Modified:
4 years, 10 months ago
Reviewers:
CC:
blink-reviews, shans, eae+blinkwatch, yurys+blink_chromium.org, apavlov+blink_chromium.org, adamk+blink_chromium.org, pdr, loislo+blink_chromium.org, Steve Block, dino_apple.com, rwlbuis, Nils Barth (inactive), krit, caseq+blink_chromium.org, Nate Chapin, arv+blink, alancutter (OOO until 2018), marja+watch_chromium.org, dglazkov+blink, abarth-chromium, aandrey+blink_chromium.org, dstockwell, Timothy Loh, Rik, devtools-reviews_chromium.org, Eric Willigers, kenneth.christiansen, rjwright, sof, lushnikov+blink_chromium.org, pfeldman+blink_chromium.org, eustas+blink_chromium.org, paulirish+reviews_chromium.org, haraken, kojih, jsbell+bindings_chromium.org, alph+blink_chromium.org, vsevik+blink_chromium.org, Mike Lawther (Google), f(malita), Inactive, Stephen Chennney, dglazkov, iannucci
Visibility:
Public.

Description

Split out CSSParser public API The goal was to identify and separate out the "public" API for the CSS parsing subsystem from the larger set of public methods on CSSParser (now BisonCSSParser) which are marked public just for CSSGrammer.y to consume. BisonCSSParser (previously CSSParser) exposes over *300* public methods and members! All but the 15 copied to CSSParser were just for CSSGrammar.y integration. This is all in preparation for attempting to swap out the CSSParser wholesale with a from-scratch implementation of the CSS3 Syntax specification. CSSParser.cpp now provides a place for me to do that run-time switching between the Bison-based parser and my new hand-rolled parser (not yet landed). Much of what is now BisonCSSParser will need to be split out into a separate "CSSBuilder" object or something akin to the HTMLConstructionSite and re-used by my proposed re-written CSS parser as the CSS3 syntax spec doesn't specify all the details encapsulated in the old parser grammar file. Follow-up patches will work to further reduce the exposed CSSParser API and remove more of this redundant indirection. BUG=330389

Patch Set 1 #

Patch Set 2 : Compiles, does not link #

Patch Set 3 : Actually could be landed, builds, should pass tests #

Patch Set 4 : #

Patch Set 5 : rebased #

Patch Set 6 : 500s #

Patch Set 7 : rebased #

Patch Set 8 : moar 500s #

Patch Set 9 : less 500s? #

Unified diffs Side-by-side diffs Delta from patch set Stats (+302 lines, -73 lines) Patch
M Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/animation/ElementAnimation.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/core.gypi View 1 2 3 4 chunks +10 lines, -8 lines 0 comments Download
Source/core/css/CSSComputedStyleDeclaration.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSGrammar.y View 1 2 3 2 chunks +1 line, -1 line 0 comments Download
Source/core/css/CSSGroupingRule.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSKeyframeRule.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/css/CSSKeyframesRule.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSMatrix.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
Source/core/css/CSSPageRule.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSPrimitiveValue.cpp View 1 2 3 2 chunks +4 lines, -3 lines 0 comments Download
M Source/core/css/CSSStyleRule.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSStyleSheet.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/CSSTokenizer-in.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
Source/core/css/CSSValuePool.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/css/DOMWindowCSS.cpp View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/css/FontFace.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/css/FontFaceSet.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/css/MediaList.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/MediaQueryExp.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/PropertySetCSSStyleDeclaration.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/SVGCSSParser.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/StylePropertySet.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/css/StyleSheetContents.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/parser/BisonCSSParser.h View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
A Source/core/css/parser/CSSParser.h View 1 2 3 1 chunk +107 lines, -0 lines 0 comments Download
A Source/core/css/parser/CSSParser.cpp View 1 2 3 1 chunk +118 lines, -0 lines 0 comments Download
M Source/core/css/resolver/FilterOperationResolver.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/resolver/StyleBuilderCustom.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/resolver/StyleResolver.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/CSSSelectorWatch.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/Element.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/dom/SelectorQuery.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/EditingStyle.cpp View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M Source/core/html/HTMLBodyElement.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/canvas/CanvasRenderingContext2D.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/canvas/CanvasStyle.cpp View 1 2 3 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/shadow/HTMLContentElement.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/inspector/InspectorStyleSheet.cpp View 1 2 3 4 chunks +5 lines, -5 lines 0 comments Download
M Source/core/svg/SVGAnimateElement.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimationElement.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGColor.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGElement.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
Source/web/WebSelector.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 8 (0 generated)
eseidel
Nowhere near ready for landing, but comments on the direction/approach are most welcome.
6 years, 12 months ago (2013-12-27 10:18:10 UTC) #1
darktears
On 2013/12/27 10:18:10, eseidel wrote: > Nowhere near ready for landing, but comments on the ...
6 years, 12 months ago (2013-12-27 12:32:31 UTC) #2
eseidel
Spoke with darktears over #blink. My original motivation with this work was to make it ...
6 years, 12 months ago (2013-12-27 18:57:37 UTC) #3
esprehn
On 2013/12/27 18:57:37, eseidel wrote: > Spoke with darktears over #blink. > > My original ...
6 years, 12 months ago (2013-12-27 19:00:21 UTC) #4
eseidel
I think this is ready for landing. The question is mostly if we're OK with ...
6 years, 12 months ago (2013-12-28 03:41:18 UTC) #5
eseidel
Hmm. Lots of test failures. I'm still interested in hearing from folks if you think ...
6 years, 12 months ago (2013-12-28 03:50:30 UTC) #6
eseidel
Landing the renaming in https://codereview.chromium.org/100453011/, then it should be easier to find my error. Likely ...
6 years, 11 months ago (2013-12-30 20:01:52 UTC) #7
eseidel
6 years, 11 months ago (2013-12-31 01:02:23 UTC) #8
Moving this to https://codereview.chromium.org/112933010/ since #rietfail is
only giving 500s.

Powered by Google App Engine
This is Rietveld 408576698