OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. |
6 * All rights reserved. | 6 * 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. | 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
10 * (http://www.torchmobile.com/) | 10 * (http://www.torchmobile.com/) |
(...skipping 1991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2002 UpdateFont(state); | 2002 UpdateFont(state); |
2003 StyleBuilder::ApplyProperty(property, state, | 2003 StyleBuilder::ApplyProperty(property, state, |
2004 *property_set.GetPropertyCSSValue(property)); | 2004 *property_set.GetPropertyCSSValue(property)); |
2005 } | 2005 } |
2006 } | 2006 } |
2007 | 2007 |
2008 void StyleResolver::UpdateMediaType() { | 2008 void StyleResolver::UpdateMediaType() { |
2009 if (FrameView* view = GetDocument().View()) { | 2009 if (FrameView* view = GetDocument().View()) { |
2010 bool was_print = print_media_type_; | 2010 bool was_print = print_media_type_; |
2011 print_media_type_ = | 2011 print_media_type_ = |
2012 EqualIgnoringCase(view->MediaType(), MediaTypeNames::print); | 2012 DeprecatedEqualIgnoringCase(view->MediaType(), MediaTypeNames::print); |
2013 if (was_print != print_media_type_) | 2013 if (was_print != print_media_type_) |
2014 matched_properties_cache_.ClearViewportDependent(); | 2014 matched_properties_cache_.ClearViewportDependent(); |
2015 } | 2015 } |
2016 } | 2016 } |
2017 | 2017 |
2018 DEFINE_TRACE(StyleResolver) { | 2018 DEFINE_TRACE(StyleResolver) { |
2019 visitor->Trace(matched_properties_cache_); | 2019 visitor->Trace(matched_properties_cache_); |
2020 visitor->Trace(selector_filter_); | 2020 visitor->Trace(selector_filter_); |
2021 visitor->Trace(style_sharing_lists_); | 2021 visitor->Trace(style_sharing_lists_); |
2022 visitor->Trace(document_); | 2022 visitor->Trace(document_); |
2023 visitor->Trace(tracker_); | 2023 visitor->Trace(tracker_); |
2024 } | 2024 } |
2025 | 2025 |
2026 } // namespace blink | 2026 } // namespace blink |
OLD | NEW |