blob: f0efa4a7d8aaf9e758c5e62a83cc259377f4e06a [file] [log] [blame]
Torne (Richard Coles)81a51572013-05-13 16:52:28 +01001/*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 *
20 */
21
22#include "config.h"
23#include "core/css/resolver/StyleResolverState.h"
24
Torne (Richard Coles)09380292014-02-21 12:17:33 +000025#include "core/animation/css/CSSAnimations.h"
Torne (Richard Coles)81a51572013-05-13 16:52:28 +010026#include "core/dom/Node.h"
27#include "core/dom/NodeRenderStyle.h"
Torne (Richard Coles)09380292014-02-21 12:17:33 +000028#include "core/frame/FrameHost.h"
Torne (Richard Coles)81a51572013-05-13 16:52:28 +010029
30namespace WebCore {
31
Torne (Richard Coles)09380292014-02-21 12:17:33 +000032StyleResolverState::StyleResolverState(Document& document, Element* element, RenderStyle* parentStyle)
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010033 : m_elementContext(element ? ElementResolveContext(*element) : ElementResolveContext())
34 , m_document(document)
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000035 , m_style(nullptr)
Torne (Richard Coles)09380292014-02-21 12:17:33 +000036 , m_cssToLengthConversionData(0, rootElementStyle(), document.renderView())
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010037 , m_parentStyle(parentStyle)
Ben Murdoch7757ec22013-07-23 11:17:36 +010038 , m_applyPropertyToRegularStyle(true)
39 , m_applyPropertyToVisitedLinkStyle(false)
Ben Murdoch07a852d2014-03-31 11:51:52 +010040 , m_lineHeightValue(nullptr)
Ben Murdoch7757ec22013-07-23 11:17:36 +010041 , m_styleMap(*this, m_elementStyleResources)
Ben Murdoch07a852d2014-03-31 11:51:52 +010042 , m_currentRule(nullptr)
Ben Murdoche69819b2013-07-17 14:56:49 +010043{
Torne (Richard Coles)43e75022014-03-21 14:26:12 +000044 if (!parentStyle && m_elementContext.parentNode())
Ben Murdoche69819b2013-07-17 14:56:49 +010045 m_parentStyle = m_elementContext.parentNode()->renderStyle();
Torne (Richard Coles)81a51572013-05-13 16:52:28 +010046
Torne (Richard Coles)09380292014-02-21 12:17:33 +000047 // FIXME: Animation unitests will start animations on non-active documents!
48 // http://crbug.com/330095
49 // ASSERT(document.isActive());
50 if (!document.isActive())
51 return;
52 m_elementStyleResources.setDeviceScaleFactor(document.frameHost()->deviceScaleFactor());
53}
54
55StyleResolverState::~StyleResolverState()
56{
57}
58
Ben Murdoch07a852d2014-03-31 11:51:52 +010059void StyleResolverState::setAnimationUpdate(PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> update)
Torne (Richard Coles)09380292014-02-21 12:17:33 +000060{
61 m_animationUpdate = update;
62}
63
Ben Murdoch07a852d2014-03-31 11:51:52 +010064PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> StyleResolverState::takeAnimationUpdate()
Torne (Richard Coles)09380292014-02-21 12:17:33 +000065{
66 return m_animationUpdate.release();
Torne (Richard Coles)81a51572013-05-13 16:52:28 +010067}
68
Torne (Richard Coles)81a51572013-05-13 16:52:28 +010069} // namespace WebCore