OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. |
3 * Copyright (C) 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2012 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above | 9 * 1. Redistributions of source code must retain the above |
10 * copyright notice, this list of conditions and the following | 10 * copyright notice, this list of conditions and the following |
(...skipping 17 matching lines...) Expand all Loading... |
28 * SUCH DAMAGE. | 28 * SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 | 32 |
33 #include "WebKitCSSRegionRule.h" | 33 #include "WebKitCSSRegionRule.h" |
34 | 34 |
35 #include "CSSParser.h" | 35 #include "CSSParser.h" |
36 #include "CSSRuleList.h" | 36 #include "CSSRuleList.h" |
37 #include "StyleRule.h" | 37 #include "StyleRule.h" |
38 #include <wtf/MemoryInstrumentationVector.h> | |
39 #include <wtf/text/StringBuilder.h> | 38 #include <wtf/text/StringBuilder.h> |
40 | 39 |
41 #if ENABLE(CSS_REGIONS) | 40 #if ENABLE(CSS_REGIONS) |
42 | 41 |
43 namespace WebCore { | 42 namespace WebCore { |
44 WebKitCSSRegionRule::WebKitCSSRegionRule(StyleRuleRegion* regionRule, CSSStyleSh
eet* parent) | 43 WebKitCSSRegionRule::WebKitCSSRegionRule(StyleRuleRegion* regionRule, CSSStyleSh
eet* parent) |
45 : CSSGroupingRule(regionRule, parent) | 44 : CSSGroupingRule(regionRule, parent) |
46 { | 45 { |
47 } | 46 } |
48 | 47 |
49 String WebKitCSSRegionRule::cssText() const | 48 String WebKitCSSRegionRule::cssText() const |
50 { | 49 { |
51 StringBuilder result; | 50 StringBuilder result; |
52 result.appendLiteral("@-webkit-region "); | 51 result.appendLiteral("@-webkit-region "); |
53 | 52 |
54 // First add the selectors. | 53 // First add the selectors. |
55 result.append(toStyleRuleRegion(m_groupRule.get())->selectorList().selectors
Text()); | 54 result.append(toStyleRuleRegion(m_groupRule.get())->selectorList().selectors
Text()); |
56 | 55 |
57 // Then add the rules. | 56 // Then add the rules. |
58 result.appendLiteral(" { \n"); | 57 result.appendLiteral(" { \n"); |
59 appendCssTextForItems(result); | 58 appendCssTextForItems(result); |
60 result.append('}'); | 59 result.append('}'); |
61 return result.toString(); | 60 return result.toString(); |
62 } | 61 } |
63 | 62 |
64 } // namespace WebCore | 63 } // namespace WebCore |
65 | 64 |
66 #endif | 65 #endif |
OLD | NEW |