| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
| 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. | 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. |
| 9 * Copyright (C) 2012 Intel Corporation. All rights reserved. | 9 * Copyright (C) 2012 Intel Corporation. All rights reserved. |
| 10 * | 10 * |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 #include "core/css/Rect.h" | 68 #include "core/css/Rect.h" |
| 69 #include "core/css/StylePropertySet.h" | 69 #include "core/css/StylePropertySet.h" |
| 70 #include "core/css/StyleRule.h" | 70 #include "core/css/StyleRule.h" |
| 71 #include "core/css/StyleRuleImport.h" | 71 #include "core/css/StyleRuleImport.h" |
| 72 #include "core/css/StyleSheetContents.h" | 72 #include "core/css/StyleSheetContents.h" |
| 73 #include "core/css/parser/CSSParserIdioms.h" | 73 #include "core/css/parser/CSSParserIdioms.h" |
| 74 #include "core/dom/Document.h" | 74 #include "core/dom/Document.h" |
| 75 #include "core/frame/FrameConsole.h" | 75 #include "core/frame/FrameConsole.h" |
| 76 #include "core/frame/FrameHost.h" | 76 #include "core/frame/FrameHost.h" |
| 77 #include "core/frame/Settings.h" | 77 #include "core/frame/Settings.h" |
| 78 #include "core/frame/UseCounter.h" |
| 78 #include "core/html/parser/HTMLParserIdioms.h" | 79 #include "core/html/parser/HTMLParserIdioms.h" |
| 79 #include "core/inspector/InspectorInstrumentation.h" | 80 #include "core/inspector/InspectorInstrumentation.h" |
| 80 #include "core/rendering/RenderTheme.h" | 81 #include "core/rendering/RenderTheme.h" |
| 81 #include "platform/FloatConversion.h" | 82 #include "platform/FloatConversion.h" |
| 82 #include "platform/RuntimeEnabledFeatures.h" | 83 #include "platform/RuntimeEnabledFeatures.h" |
| 83 #include "wtf/BitArray.h" | 84 #include "wtf/BitArray.h" |
| 84 #include "wtf/HexNumber.h" | 85 #include "wtf/HexNumber.h" |
| 85 #include "wtf/text/StringBuffer.h" | 86 #include "wtf/text/StringBuffer.h" |
| 86 #include "wtf/text/StringBuilder.h" | 87 #include "wtf/text/StringBuilder.h" |
| 87 #include "wtf/text/StringImpl.h" | 88 #include "wtf/text/StringImpl.h" |
| (...skipping 2022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2110 rule->setProperties(createStylePropertySet()); | 2111 rule->setProperties(createStylePropertySet()); |
| 2111 clearProperties(); | 2112 clearProperties(); |
| 2112 | 2113 |
| 2113 StyleRuleViewport* result = rule.get(); | 2114 StyleRuleViewport* result = rule.get(); |
| 2114 m_parsedRules.append(rule.release()); | 2115 m_parsedRules.append(rule.release()); |
| 2115 | 2116 |
| 2116 return result; | 2117 return result; |
| 2117 } | 2118 } |
| 2118 | 2119 |
| 2119 } | 2120 } |
| OLD | NEW |