| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 return adoptRef(new CSSSupportsRule(rule, sheet)); | 43 return adoptRef(new CSSSupportsRule(rule, sheet)); |
| 44 } | 44 } |
| 45 | 45 |
| 46 virtual ~CSSSupportsRule() { } | 46 virtual ~CSSSupportsRule() { } |
| 47 | 47 |
| 48 virtual CSSRule::Type type() const override { return SUPPORTS_RULE; } | 48 virtual CSSRule::Type type() const override { return SUPPORTS_RULE; } |
| 49 virtual String cssText() const override; | 49 virtual String cssText() const override; |
| 50 | 50 |
| 51 String conditionText() const; | 51 String conditionText() const; |
| 52 | 52 |
| 53 virtual void trace(Visitor* visitor) override { CSSGroupingRule::trace(visit
or); } | |
| 54 | |
| 55 private: | 53 private: |
| 56 CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*); | 54 CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*); |
| 57 }; | 55 }; |
| 58 | 56 |
| 59 DEFINE_CSS_RULE_TYPE_CASTS(CSSSupportsRule, SUPPORTS_RULE); | 57 DEFINE_CSS_RULE_TYPE_CASTS(CSSSupportsRule, SUPPORTS_RULE); |
| 60 | 58 |
| 61 } // namespace blink | 59 } // namespace blink |
| 62 | 60 |
| 63 #endif // CSSSupportsRule_h | 61 #endif // CSSSupportsRule_h |
| OLD | NEW |