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

Side by Side Diff: Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 100453011: Rename css/CSSParser to css/parser/BisonCSSParser. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "core/css/CSSAspectRatioValue.h" 46 #include "core/css/CSSAspectRatioValue.h"
47 #include "core/css/CSSCursorImageValue.h" 47 #include "core/css/CSSCursorImageValue.h"
48 #include "core/css/CSSFontValue.h" 48 #include "core/css/CSSFontValue.h"
49 #include "core/css/CSSFunctionValue.h" 49 #include "core/css/CSSFunctionValue.h"
50 #include "core/css/CSSGradientValue.h" 50 #include "core/css/CSSGradientValue.h"
51 #include "core/css/CSSGridLineNamesValue.h" 51 #include "core/css/CSSGridLineNamesValue.h"
52 #include "core/css/CSSGridTemplateValue.h" 52 #include "core/css/CSSGridTemplateValue.h"
53 #include "core/css/CSSHelper.h" 53 #include "core/css/CSSHelper.h"
54 #include "core/css/CSSImageSetValue.h" 54 #include "core/css/CSSImageSetValue.h"
55 #include "core/css/CSSLineBoxContainValue.h" 55 #include "core/css/CSSLineBoxContainValue.h"
56 #include "core/css/CSSParser.h" 56 #include "core/css/parser/BisonCSSParser.h"
57 #include "core/css/CSSPrimitiveValueMappings.h" 57 #include "core/css/CSSPrimitiveValueMappings.h"
58 #include "core/css/CSSProperty.h" 58 #include "core/css/CSSProperty.h"
59 #include "core/css/CSSReflectValue.h" 59 #include "core/css/CSSReflectValue.h"
60 #include "core/css/CSSVariableValue.h" 60 #include "core/css/CSSVariableValue.h"
61 #include "core/css/Counter.h" 61 #include "core/css/Counter.h"
62 #include "core/css/Rect.h" 62 #include "core/css/Rect.h"
63 #include "core/css/StylePropertySet.h" 63 #include "core/css/StylePropertySet.h"
64 #include "core/css/StyleRule.h" 64 #include "core/css/StyleRule.h"
65 #include "core/css/resolver/ElementStyleResources.h" 65 #include "core/css/resolver/ElementStyleResources.h"
66 #include "core/css/resolver/FilterOperationResolver.h" 66 #include "core/css/resolver/FilterOperationResolver.h"
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 CSSPrimitiveValue* first = toCSSPrimitiveValue(inspector.first()); 432 CSSPrimitiveValue* first = toCSSPrimitiveValue(inspector.first());
433 CSSPrimitiveValue* second = toCSSPrimitiveValue(inspector.second()); 433 CSSPrimitiveValue* second = toCSSPrimitiveValue(inspector.second());
434 if (first->isLength()) { 434 if (first->isLength()) {
435 // <length>{2} 435 // <length>{2}
436 if (!second->isLength()) 436 if (!second->isLength())
437 return; 437 return;
438 width = first->computeLength<Length>(state.cssToLengthConversionData ().copyWithAdjustedZoom(1.0)); 438 width = first->computeLength<Length>(state.cssToLengthConversionData ().copyWithAdjustedZoom(1.0));
439 height = second->computeLength<Length>(state.cssToLengthConversionDa ta().copyWithAdjustedZoom(1.0)); 439 height = second->computeLength<Length>(state.cssToLengthConversionDa ta().copyWithAdjustedZoom(1.0));
440 } else { 440 } else {
441 // <page-size> <orientation> 441 // <page-size> <orientation>
442 // The value order is guaranteed. See CSSParser::parseSizeParameter. 442 // The value order is guaranteed. See BisonCSSParser::parseSizeParam eter.
443 if (!getPageSizeFromName(first, second, width, height)) 443 if (!getPageSizeFromName(first, second, width, height))
444 return; 444 return;
445 } 445 }
446 pageSizeType = PAGE_SIZE_RESOLVED; 446 pageSizeType = PAGE_SIZE_RESOLVED;
447 break; 447 break;
448 } 448 }
449 case 1: { 449 case 1: {
450 // <length> | auto | <page-size> | [ portrait | landscape] 450 // <length> | auto | <page-size> | [ portrait | landscape]
451 if (!inspector.first()->isPrimitiveValue()) 451 if (!inspector.first()->isPrimitiveValue())
452 return; 452 return;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 state.style()->setTextIndent(RenderStyle::initialTextIndent()); 526 state.style()->setTextIndent(RenderStyle::initialTextIndent());
527 state.style()->setTextIndentLine(RenderStyle::initialTextIndentLine()); 527 state.style()->setTextIndentLine(RenderStyle::initialTextIndentLine());
528 } 528 }
529 529
530 void StyleBuilderFunctions::applyValueCSSPropertyTextIndent(StyleResolverState& state, CSSValue* value) 530 void StyleBuilderFunctions::applyValueCSSPropertyTextIndent(StyleResolverState& state, CSSValue* value)
531 { 531 {
532 if (!value->isValueList()) 532 if (!value->isValueList())
533 return; 533 return;
534 534
535 // [ <length> | <percentage> ] each-line 535 // [ <length> | <percentage> ] each-line
536 // The order is guaranteed. See CSSParser::parseTextIndent. 536 // The order is guaranteed. See BisonCSSParser::parseTextIndent.
537 // The second value, each-line is handled only when css3TextEnabled() return s true. 537 // The second value, each-line is handled only when css3TextEnabled() return s true.
538 538
539 CSSValueList* valueList = toCSSValueList(value); 539 CSSValueList* valueList = toCSSValueList(value);
540 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(valueList->itemWitho utBoundsCheck(0)); 540 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(valueList->itemWitho utBoundsCheck(0));
541 Length lengthOrPercentageValue = primitiveValue->convertToLength<FixedConver sion | PercentConversion>(state.cssToLengthConversionData()); 541 Length lengthOrPercentageValue = primitiveValue->convertToLength<FixedConver sion | PercentConversion>(state.cssToLengthConversionData());
542 state.style()->setTextIndent(lengthOrPercentageValue); 542 state.style()->setTextIndent(lengthOrPercentageValue);
543 543
544 ASSERT(valueList->length() <= 2); 544 ASSERT(valueList->length() <= 2);
545 CSSPrimitiveValue* eachLineValue = toCSSPrimitiveValue(valueList->item(1)); 545 CSSPrimitiveValue* eachLineValue = toCSSPrimitiveValue(valueList->item(1));
546 if (eachLineValue) { 546 if (eachLineValue) {
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
1102 { 1102 {
1103 std::pair<CSSPropertyID, String> expression(id, value->serializeResolvingVar iables(*state.style()->variables())); 1103 std::pair<CSSPropertyID, String> expression(id, value->serializeResolvingVar iables(*state.style()->variables()));
1104 1104
1105 if (knownExpressions.contains(expression)) 1105 if (knownExpressions.contains(expression))
1106 return; // cycle detected. 1106 return; // cycle detected.
1107 1107
1108 knownExpressions.append(expression); 1108 knownExpressions.append(expression);
1109 1109
1110 // FIXME: It would be faster not to re-parse from strings, but for now CSS p roperty validation lives inside the parser so we do it there. 1110 // FIXME: It would be faster not to re-parse from strings, but for now CSS p roperty validation lives inside the parser so we do it there.
1111 RefPtr<MutableStylePropertySet> resultSet = MutableStylePropertySet::create( ); 1111 RefPtr<MutableStylePropertySet> resultSet = MutableStylePropertySet::create( );
1112 if (!CSSParser::parseValue(resultSet.get(), id, expression.second, false, st ate.document())) 1112 if (!BisonCSSParser::parseValue(resultSet.get(), id, expression.second, fals e, state.document()))
1113 return; // expression failed to parse. 1113 return; // expression failed to parse.
1114 1114
1115 for (unsigned i = 0; i < resultSet->propertyCount(); i++) { 1115 for (unsigned i = 0; i < resultSet->propertyCount(); i++) {
1116 StylePropertySet::PropertyReference property = resultSet->propertyAt(i); 1116 StylePropertySet::PropertyReference property = resultSet->propertyAt(i);
1117 if (property.id() != CSSPropertyVariable && hasVariableReference(propert y.value())) { 1117 if (property.id() != CSSPropertyVariable && hasVariableReference(propert y.value())) {
1118 resolveVariables(state, property.id(), property.value(), knownExpres sions); 1118 resolveVariables(state, property.id(), property.value(), knownExpres sions);
1119 } else { 1119 } else {
1120 StyleBuilder::applyProperty(property.id(), state, property.value()); 1120 StyleBuilder::applyProperty(property.id(), state, property.value());
1121 // All properties become dependent on their parent style when they u se variables. 1121 // All properties become dependent on their parent style when they u se variables.
1122 state.style()->setHasExplicitlyInheritedProperties(); 1122 state.style()->setHasExplicitlyInheritedProperties();
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
2143 break; 2143 break;
2144 } 2144 }
2145 case CSSPropertyEnableBackground: 2145 case CSSPropertyEnableBackground:
2146 // Silently ignoring this property for now 2146 // Silently ignoring this property for now
2147 // http://bugs.webkit.org/show_bug.cgi?id=6022 2147 // http://bugs.webkit.org/show_bug.cgi?id=6022
2148 break; 2148 break;
2149 } 2149 }
2150 } 2150 }
2151 2151
2152 } // namespace WebCore 2152 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/resolver/FilterOperationResolver.cpp ('k') | Source/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698