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

Side by Side Diff: sky/engine/core/editing/EditingStyle.cpp

Issue 780483002: Remove the CSSOM. (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 unified diff | Download patch
« no previous file with comments | « sky/engine/core/dom/shadow/ShadowRoot.idl ('k') | sky/engine/core/frame/LocalDOMWindow.h » ('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) 2007, 2008, 2009 Apple Computer, Inc. 2 * Copyright (C) 2007, 2008, 2009 Apple Computer, Inc.
3 * Copyright (C) 2010, 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2010, 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 13 matching lines...) Expand all
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #include "sky/engine/config.h" 27 #include "sky/engine/config.h"
28 #include "sky/engine/core/editing/EditingStyle.h" 28 #include "sky/engine/core/editing/EditingStyle.h"
29 29
30 #include "gen/sky/core/HTMLNames.h" 30 #include "gen/sky/core/HTMLNames.h"
31 #include "sky/engine/bindings/core/v8/ExceptionStatePlaceholder.h" 31 #include "sky/engine/bindings/core/v8/ExceptionStatePlaceholder.h"
32 #include "sky/engine/core/css/CSSComputedStyleDeclaration.h" 32 #include "sky/engine/core/css/CSSComputedStyleDeclaration.h"
33 #include "sky/engine/core/css/CSSPropertyMetadata.h" 33 #include "sky/engine/core/css/CSSPropertyMetadata.h"
34 #include "sky/engine/core/css/CSSRuleList.h"
35 #include "sky/engine/core/css/CSSStyleRule.h"
36 #include "sky/engine/core/css/CSSValueList.h" 34 #include "sky/engine/core/css/CSSValueList.h"
37 #include "sky/engine/core/css/CSSValuePool.h" 35 #include "sky/engine/core/css/CSSValuePool.h"
38 #include "sky/engine/core/css/FontSize.h" 36 #include "sky/engine/core/css/FontSize.h"
39 #include "sky/engine/core/css/StylePropertySet.h" 37 #include "sky/engine/core/css/StylePropertySet.h"
40 #include "sky/engine/core/css/StyleRule.h" 38 #include "sky/engine/core/css/StyleRule.h"
41 #include "sky/engine/core/css/parser/BisonCSSParser.h" 39 #include "sky/engine/core/css/parser/BisonCSSParser.h"
42 #include "sky/engine/core/css/resolver/StyleResolver.h" 40 #include "sky/engine/core/css/resolver/StyleResolver.h"
43 #include "sky/engine/core/dom/Document.h" 41 #include "sky/engine/core/dom/Document.h"
44 #include "sky/engine/core/dom/Element.h" 42 #include "sky/engine/core/dom/Element.h"
45 #include "sky/engine/core/dom/Node.h" 43 #include "sky/engine/core/dom/Node.h"
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 { 578 {
581 for (Node* ancestor = node; ancestor; ancestor = ancestor->parentNode()) { 579 for (Node* ancestor = node; ancestor; ancestor = ancestor->parentNode()) {
582 RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDecl aration::create(ancestor); 580 RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDecl aration::create(ancestor);
583 if (!hasTransparentBackgroundColor(ancestorStyle.get())) 581 if (!hasTransparentBackgroundColor(ancestorStyle.get()))
584 return ancestorStyle->getPropertyCSSValue(CSSPropertyBackgroundColor ); 582 return ancestorStyle->getPropertyCSSValue(CSSPropertyBackgroundColor );
585 } 583 }
586 return nullptr; 584 return nullptr;
587 } 585 }
588 586
589 } 587 }
OLDNEW
« no previous file with comments | « sky/engine/core/dom/shadow/ShadowRoot.idl ('k') | sky/engine/core/frame/LocalDOMWindow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698