| 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 13 matching lines...) Expand all Loading... |
| 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/CSSRule.h" | 32 #include "core/css/CSSRule.h" |
| 33 #include "core/css/StyleRule.h" | 33 #include "core/css/StyleRule.h" |
| 34 #include <wtf/MemoryInstrumentationVector.h> | 34 #include "wtf/text/StringBuilder.h" |
| 35 #include <wtf/text/StringBuilder.h> | |
| 36 | 35 |
| 37 namespace WebCore { | 36 namespace WebCore { |
| 38 | 37 |
| 39 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet*
parent) | 38 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet*
parent) |
| 40 : CSSGroupingRule(supportsRule, parent) | 39 : CSSGroupingRule(supportsRule, parent) |
| 41 { | 40 { |
| 42 } | 41 } |
| 43 | 42 |
| 44 String CSSSupportsRule::cssText() const | 43 String CSSSupportsRule::cssText() const |
| 45 { | 44 { |
| 46 StringBuilder result; | 45 StringBuilder result; |
| 47 | 46 |
| 48 result.append("@supports "); | 47 result.append("@supports "); |
| 49 result.append(conditionText()); | 48 result.append(conditionText()); |
| 50 result.append(" {\n"); | 49 result.append(" {\n"); |
| 51 appendCssTextForItems(result); | 50 appendCssTextForItems(result); |
| 52 result.append('}'); | 51 result.append('}'); |
| 53 | 52 |
| 54 return result.toString(); | 53 return result.toString(); |
| 55 } | 54 } |
| 56 | 55 |
| 57 String CSSSupportsRule::conditionText() const | 56 String CSSSupportsRule::conditionText() const |
| 58 { | 57 { |
| 59 return toStyleRuleSupports(m_groupRule.get())->conditionText(); | 58 return toStyleRuleSupports(m_groupRule.get())->conditionText(); |
| 60 } | 59 } |
| 61 | 60 |
| 62 } // namespace WebCore | 61 } // namespace WebCore |
| OLD | NEW |