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

Side by Side Diff: Source/core/editing/serializers/Serialization.cpp

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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
« no previous file with comments | « Source/core/editing/commands/EditorCommand.cpp ('k') | Source/core/html/HTMLBodyElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008, 2009, 2010, 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011 Google Inc. All rights reserved.
4 * Copyright (C) 2011 Igalia S.L. 4 * Copyright (C) 2011 Igalia S.L.
5 * Copyright (C) 2011 Motorola Mobility. All rights reserved. 5 * Copyright (C) 2011 Motorola Mobility. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 static inline HTMLElement* ancestorToRetainStructureAndAppearanceWithNoLayoutObj ect(Node* commonAncestor) 155 static inline HTMLElement* ancestorToRetainStructureAndAppearanceWithNoLayoutObj ect(Node* commonAncestor)
156 { 156 {
157 HTMLElement* commonAncestorBlock = toHTMLElement(enclosingNodeOfType(firstPo sitionInOrBeforeNode(commonAncestor), isHTMLBlockElement)); 157 HTMLElement* commonAncestorBlock = toHTMLElement(enclosingNodeOfType(firstPo sitionInOrBeforeNode(commonAncestor), isHTMLBlockElement));
158 return ancestorToRetainStructureAndAppearanceForBlock(commonAncestorBlock); 158 return ancestorToRetainStructureAndAppearanceForBlock(commonAncestorBlock);
159 } 159 }
160 160
161 bool propertyMissingOrEqualToNone(StylePropertySet* style, CSSPropertyID propert yID) 161 bool propertyMissingOrEqualToNone(StylePropertySet* style, CSSPropertyID propert yID)
162 { 162 {
163 if (!style) 163 if (!style)
164 return false; 164 return false;
165 RefPtrWillBeRawPtr<CSSValue> value = style->getPropertyCSSValue(propertyID); 165 RefPtr<CSSValue> value = style->getPropertyCSSValue(propertyID);
166 if (!value) 166 if (!value)
167 return true; 167 return true;
168 if (!value->isPrimitiveValue()) 168 if (!value->isPrimitiveValue())
169 return false; 169 return false;
170 return toCSSPrimitiveValue(value.get())->getValueID() == CSSValueNone; 170 return toCSSPrimitiveValue(value.get())->getValueID() == CSSValueNone;
171 } 171 }
172 172
173 static bool isPresentationalHTMLElement(const Node* node) 173 static bool isPresentationalHTMLElement(const Node* node)
174 { 174 {
175 if (!node->isHTMLElement()) 175 if (!node->isHTMLElement())
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 RefPtrWillBeRawPtr<Text> textNext = toText(next); 705 RefPtrWillBeRawPtr<Text> textNext = toText(next);
706 textNode->appendData(textNext->data()); 706 textNode->appendData(textNext->data());
707 if (textNext->parentNode()) // Might have been removed by mutation event. 707 if (textNext->parentNode()) // Might have been removed by mutation event.
708 textNext->remove(exceptionState); 708 textNext->remove(exceptionState);
709 } 709 }
710 710
711 template class CORE_TEMPLATE_EXPORT CreateMarkupAlgorithm<EditingStrategy>; 711 template class CORE_TEMPLATE_EXPORT CreateMarkupAlgorithm<EditingStrategy>;
712 template class CORE_TEMPLATE_EXPORT CreateMarkupAlgorithm<EditingInComposedTreeS trategy>; 712 template class CORE_TEMPLATE_EXPORT CreateMarkupAlgorithm<EditingInComposedTreeS trategy>;
713 713
714 } 714 }
OLDNEW
« no previous file with comments | « Source/core/editing/commands/EditorCommand.cpp ('k') | Source/core/html/HTMLBodyElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698