| OLD | NEW |
| 1 /* Copyright (C) 2012 Motorola Mobility Inc. All rights reserved. | 1 /* Copyright (C) 2012 Motorola Mobility Inc. All rights reserved. |
| 2 * | 2 * |
| 3 * Redistribution and use in source and binary forms, with or without | 3 * Redistribution and use in source and binary forms, with or without |
| 4 * modification, are permitted provided that the following conditions are | 4 * modification, are permitted provided that the following conditions are |
| 5 * met: | 5 * met: |
| 6 * | 6 * |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above | 9 * 2. Redistributions in binary form must reproduce the above |
| 10 * copyright notice, this list of conditions and the following disclaimer in | 10 * copyright notice, this list of conditions and the following disclaimer in |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #include "config.h" | 29 #include "config.h" |
| 30 #include "core/css/CSSSupportsRule.h" | 30 #include "core/css/CSSSupportsRule.h" |
| 31 | 31 |
| 32 #include "core/css/CSSParser.h" | |
| 33 #include "core/css/CSSRule.h" | 32 #include "core/css/CSSRule.h" |
| 34 #include "core/css/CSSRuleList.h" | |
| 35 #include "core/css/CSSStyleSheet.h" | |
| 36 #include "core/css/StyleRule.h" | 33 #include "core/css/StyleRule.h" |
| 37 #include "core/dom/ExceptionCode.h" | |
| 38 #include "core/dom/WebCoreMemoryInstrumentation.h" | |
| 39 #include <wtf/MemoryInstrumentationVector.h> | 34 #include <wtf/MemoryInstrumentationVector.h> |
| 40 #include <wtf/text/StringBuilder.h> | 35 #include <wtf/text/StringBuilder.h> |
| 41 | 36 |
| 42 namespace WebCore { | 37 namespace WebCore { |
| 43 | 38 |
| 44 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet*
parent) | 39 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet*
parent) |
| 45 : CSSGroupingRule(supportsRule, parent) | 40 : CSSGroupingRule(supportsRule, parent) |
| 46 { | 41 { |
| 47 } | 42 } |
| 48 | 43 |
| 49 String CSSSupportsRule::cssText() const | 44 String CSSSupportsRule::cssText() const |
| 50 { | 45 { |
| 51 StringBuilder result; | 46 StringBuilder result; |
| 52 | 47 |
| 53 result.append("@supports "); | 48 result.append("@supports "); |
| 54 result.append(conditionText()); | 49 result.append(conditionText()); |
| 55 result.append(" {\n"); | 50 result.append(" {\n"); |
| 56 appendCssTextForItems(result); | 51 appendCssTextForItems(result); |
| 57 result.append('}'); | 52 result.append('}'); |
| 58 | 53 |
| 59 return result.toString(); | 54 return result.toString(); |
| 60 } | 55 } |
| 61 | 56 |
| 62 String CSSSupportsRule::conditionText() const | 57 String CSSSupportsRule::conditionText() const |
| 63 { | 58 { |
| 64 return toStyleRuleSupports(m_groupRule.get())->conditionText(); | 59 return toStyleRuleSupports(m_groupRule.get())->conditionText(); |
| 65 } | 60 } |
| 66 | 61 |
| 67 } // namespace WebCore | 62 } // namespace WebCore |
| OLD | NEW |