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

Side by Side Diff: Source/core/dom/Element.cpp

Issue 112933010: Split out CSSParser public API 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * (C) 2007 David Smith (catfish.man@gmail.com) 6 * (C) 2007 David Smith (catfish.man@gmail.com)
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
8 * (C) 2007 Eric Seidel (eric@webkit.org) 8 * (C) 2007 Eric Seidel (eric@webkit.org)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 16 matching lines...) Expand all
27 #include "core/dom/Element.h" 27 #include "core/dom/Element.h"
28 28
29 #include "CSSValueKeywords.h" 29 #include "CSSValueKeywords.h"
30 #include "RuntimeEnabledFeatures.h" 30 #include "RuntimeEnabledFeatures.h"
31 #include "SVGNames.h" 31 #include "SVGNames.h"
32 #include "XMLNames.h" 32 #include "XMLNames.h"
33 #include "bindings/v8/ExceptionState.h" 33 #include "bindings/v8/ExceptionState.h"
34 #include "core/accessibility/AXObjectCache.h" 34 #include "core/accessibility/AXObjectCache.h"
35 #include "core/animation/DocumentTimeline.h" 35 #include "core/animation/DocumentTimeline.h"
36 #include "core/animation/css/CSSAnimations.h" 36 #include "core/animation/css/CSSAnimations.h"
37 #include "core/css/parser/BisonCSSParser.h" 37 #include "core/css/parser/CSSParser.h"
38 #include "core/css/CSSStyleSheet.h" 38 #include "core/css/CSSStyleSheet.h"
39 #include "core/css/CSSValuePool.h" 39 #include "core/css/CSSValuePool.h"
40 #include "core/css/PropertySetCSSStyleDeclaration.h" 40 #include "core/css/PropertySetCSSStyleDeclaration.h"
41 #include "core/css/StylePropertySet.h" 41 #include "core/css/StylePropertySet.h"
42 #include "core/css/resolver/StyleResolver.h" 42 #include "core/css/resolver/StyleResolver.h"
43 #include "core/dom/Attr.h" 43 #include "core/dom/Attr.h"
44 #include "core/dom/CSSSelectorWatch.h" 44 #include "core/dom/CSSSelectorWatch.h"
45 #include "core/dom/ClientRect.h" 45 #include "core/dom/ClientRect.h"
46 #include "core/dom/ClientRectList.h" 46 #include "core/dom/ClientRectList.h"
47 #include "core/dom/DatasetDOMStringMap.h" 47 #include "core/dom/DatasetDOMStringMap.h"
(...skipping 3424 matching lines...) Expand 10 before | Expand all | Expand 10 after
3472 // Avoid redundant work if we're using shared attribute data with already pa rsed inline style. 3472 // Avoid redundant work if we're using shared attribute data with already pa rsed inline style.
3473 if (inlineStyle && !elementData()->isUnique()) 3473 if (inlineStyle && !elementData()->isUnique())
3474 return; 3474 return;
3475 3475
3476 // We reconstruct the property set instead of mutating if there is no CSSOM wrapper. 3476 // We reconstruct the property set instead of mutating if there is no CSSOM wrapper.
3477 // This makes wrapperless property sets immutable and so cacheable. 3477 // This makes wrapperless property sets immutable and so cacheable.
3478 if (inlineStyle && !inlineStyle->isMutable()) 3478 if (inlineStyle && !inlineStyle->isMutable())
3479 inlineStyle.clear(); 3479 inlineStyle.clear();
3480 3480
3481 if (!inlineStyle) { 3481 if (!inlineStyle) {
3482 inlineStyle = BisonCSSParser::parseInlineStyleDeclaration(newStyleString , this); 3482 inlineStyle = CSSParser::parseInlineStyleDeclaration(newStyleString, thi s);
3483 } else { 3483 } else {
3484 ASSERT(inlineStyle->isMutable()); 3484 ASSERT(inlineStyle->isMutable());
3485 static_pointer_cast<MutableStylePropertySet>(inlineStyle)->parseDeclarat ion(newStyleString, document().elementSheet()->contents()); 3485 static_pointer_cast<MutableStylePropertySet>(inlineStyle)->parseDeclarat ion(newStyleString, document().elementSheet()->contents());
3486 } 3486 }
3487 } 3487 }
3488 3488
3489 void Element::styleAttributeChanged(const AtomicString& newStyleString, Attribut eModificationReason modificationReason) 3489 void Element::styleAttributeChanged(const AtomicString& newStyleString, Attribut eModificationReason modificationReason)
3490 { 3490 {
3491 ASSERT(isStyledElement()); 3491 ASSERT(isStyledElement());
3492 WTF::OrdinalNumber startLineNumber = WTF::OrdinalNumber::beforeFirst(); 3492 WTF::OrdinalNumber startLineNumber = WTF::OrdinalNumber::beforeFirst();
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
3639 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi stItems 3639 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi stItems
3640 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg i?id=88405 3640 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg i?id=88405
3641 if (hasTagName(optionTag) || hasTagName(optgroupTag)) 3641 if (hasTagName(optionTag) || hasTagName(optgroupTag))
3642 return false; 3642 return false;
3643 if (FullscreenElementStack::isActiveFullScreenElement(this)) 3643 if (FullscreenElementStack::isActiveFullScreenElement(this))
3644 return false; 3644 return false;
3645 return true; 3645 return true;
3646 } 3646 }
3647 3647
3648 } // namespace WebCore 3648 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698