Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: Source/core/css/WebKitCSSRegionRule.cpp

Issue 14178009: Remove CSS_REGIONS compile flag from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: New version Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/css/WebKitCSSRegionRule.h ('k') | Source/core/css/WebKitCSSRegionRule.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 14 matching lines...) Expand all
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE. 28 * SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 32
33 #include "core/css/WebKitCSSRegionRule.h" 33 #include "core/css/WebKitCSSRegionRule.h"
34 34
35 #include "RuntimeEnabledFeatures.h"
35 #include "core/css/CSSParser.h" 36 #include "core/css/CSSParser.h"
36 #include "core/css/CSSRuleList.h" 37 #include "core/css/CSSRuleList.h"
37 #include "core/css/StyleRule.h" 38 #include "core/css/StyleRule.h"
38 #include <wtf/MemoryInstrumentationVector.h> 39 #include <wtf/MemoryInstrumentationVector.h>
39 #include <wtf/text/StringBuilder.h> 40 #include <wtf/text/StringBuilder.h>
40 41
41 #if ENABLE(CSS_REGIONS)
42
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 {
46 ASSERT(RuntimeEnabledFeatures::cssRegionsEnabled());
47 } 47 }
48 48
49 String WebKitCSSRegionRule::cssText() const 49 String WebKitCSSRegionRule::cssText() const
50 { 50 {
51 StringBuilder result; 51 StringBuilder result;
52 result.appendLiteral("@-webkit-region "); 52 result.appendLiteral("@-webkit-region ");
53 53
54 // First add the selectors. 54 // First add the selectors.
55 result.append(toStyleRuleRegion(m_groupRule.get())->selectorList().selectors Text()); 55 result.append(toStyleRuleRegion(m_groupRule.get())->selectorList().selectors Text());
56 56
57 // Then add the rules. 57 // Then add the rules.
58 result.appendLiteral(" { \n"); 58 result.appendLiteral(" { \n");
59 appendCssTextForItems(result); 59 appendCssTextForItems(result);
60 result.append('}'); 60 result.append('}');
61 return result.toString(); 61 return result.toString();
62 } 62 }
63 63
64 } // namespace WebCore 64 } // namespace WebCore
65
66 #endif
OLDNEW
« no previous file with comments | « Source/core/css/WebKitCSSRegionRule.h ('k') | Source/core/css/WebKitCSSRegionRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698