| 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.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. |
| 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 String cssText = | 108 String cssText = |
| 109 "link, import, meta, script, style, template, title {\n" | 109 "link, import, meta, script, style, template, title {\n" |
| 110 " display: none;\n" | 110 " display: none;\n" |
| 111 "}\n" | 111 "}\n" |
| 112 "a {\n" | 112 "a {\n" |
| 113 " color: blue;\n" | 113 " color: blue;\n" |
| 114 " display: inline;\n" | 114 " display: inline;\n" |
| 115 " text-decoration: underline;\n" | 115 " text-decoration: underline;\n" |
| 116 "}\n"; | 116 "}\n"; |
| 117 | 117 |
| 118 | 118 styleSheet = StyleSheetContents::create(0, CSSParserContext(0)); |
| 119 styleSheet = StyleSheetContents::create(CSSParserContext(0)); | |
| 120 styleSheet->parseString(cssText); | 119 styleSheet->parseString(cssText); |
| 121 | 120 |
| 122 ruleSet = RuleSet::create(); | 121 ruleSet = RuleSet::create(); |
| 123 ruleSet->addRulesFromSheet(styleSheet.get()); | 122 ruleSet->addRulesFromSheet(styleSheet.get()); |
| 124 | 123 |
| 125 return *ruleSet; | 124 return *ruleSet; |
| 126 } | 125 } |
| 127 | 126 |
| 128 StyleResolver::StyleResolver(Document& document) | 127 StyleResolver::StyleResolver(Document& document) |
| 129 : m_document(document) | 128 : m_document(document) |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 bool StyleResolver::mediaQueryAffectedByViewportChange() const | 911 bool StyleResolver::mediaQueryAffectedByViewportChange() const |
| 913 { | 912 { |
| 914 for (unsigned i = 0; i < m_viewportDependentMediaQueryResults.size(); ++i) { | 913 for (unsigned i = 0; i < m_viewportDependentMediaQueryResults.size(); ++i) { |
| 915 if (m_medium->eval(m_viewportDependentMediaQueryResults[i]->expression()
) != m_viewportDependentMediaQueryResults[i]->result()) | 914 if (m_medium->eval(m_viewportDependentMediaQueryResults[i]->expression()
) != m_viewportDependentMediaQueryResults[i]->result()) |
| 916 return true; | 915 return true; |
| 917 } | 916 } |
| 918 return false; | 917 return false; |
| 919 } | 918 } |
| 920 | 919 |
| 921 } // namespace blink | 920 } // namespace blink |
| OLD | NEW |