| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights
reserved. | 3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights
reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 virtual void setDisabled(bool) OVERRIDE; | 63 virtual void setDisabled(bool) OVERRIDE; |
| 64 | 64 |
| 65 PassRefPtr<CSSRuleList> cssRules(); | 65 PassRefPtr<CSSRuleList> cssRules(); |
| 66 unsigned insertRule(const String& rule, unsigned index, ExceptionState&); | 66 unsigned insertRule(const String& rule, unsigned index, ExceptionState&); |
| 67 void deleteRule(unsigned index, ExceptionState&); | 67 void deleteRule(unsigned index, ExceptionState&); |
| 68 | 68 |
| 69 // IE Extensions | 69 // IE Extensions |
| 70 PassRefPtr<CSSRuleList> rules(); | 70 PassRefPtr<CSSRuleList> rules(); |
| 71 int addRule(const String& selector, const String& style, int index, Exceptio
nState&); | 71 int addRule(const String& selector, const String& style, int index, Exceptio
nState&); |
| 72 int addRule(const String& selector, const String& style, ExceptionState&); | 72 int addRule(const String& selector, const String& style, ExceptionState&); |
| 73 void removeRule(unsigned index, ExceptionState& es) { deleteRule(index, es);
} | 73 void removeRule(unsigned index, ExceptionState& exceptionState) { deleteRule
(index, exceptionState); } |
| 74 | 74 |
| 75 // For CSSRuleList. | 75 // For CSSRuleList. |
| 76 unsigned length() const; | 76 unsigned length() const; |
| 77 CSSRule* item(unsigned index); | 77 CSSRule* item(unsigned index); |
| 78 | 78 |
| 79 virtual void clearOwnerNode() OVERRIDE { didMutate(EntireStyleSheetUpdate);
m_ownerNode = 0; } | 79 virtual void clearOwnerNode() OVERRIDE { didMutate(EntireStyleSheetUpdate);
m_ownerNode = 0; } |
| 80 virtual CSSRule* ownerRule() const OVERRIDE { return m_ownerRule; } | 80 virtual CSSRule* ownerRule() const OVERRIDE { return m_ownerRule; } |
| 81 virtual KURL baseURL() const OVERRIDE; | 81 virtual KURL baseURL() const OVERRIDE; |
| 82 virtual bool isLoading() const OVERRIDE; | 82 virtual bool isLoading() const OVERRIDE; |
| 83 | 83 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 { | 160 { |
| 161 if (m_styleSheet) | 161 if (m_styleSheet) |
| 162 m_styleSheet->didMutateRules(); | 162 m_styleSheet->didMutateRules(); |
| 163 } | 163 } |
| 164 | 164 |
| 165 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sh
eet.isCSSStyleSheet()); | 165 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sh
eet.isCSSStyleSheet()); |
| 166 | 166 |
| 167 } // namespace | 167 } // namespace |
| 168 | 168 |
| 169 #endif | 169 #endif |
| OLD | NEW |