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

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

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSStyleSheet.cpp ('k') | Source/core/css/CSSTimingFunctionValue.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 "ExceptionCode.h"
33 #include "WebCoreMemoryInstrumentation.h"
34 #include "core/css/CSSParser.h" 32 #include "core/css/CSSParser.h"
35 #include "core/css/CSSRule.h" 33 #include "core/css/CSSRule.h"
36 #include "core/css/CSSRuleList.h" 34 #include "core/css/CSSRuleList.h"
37 #include "core/css/CSSStyleSheet.h" 35 #include "core/css/CSSStyleSheet.h"
38 #include "core/css/StyleRule.h" 36 #include "core/css/StyleRule.h"
37 #include "core/dom/ExceptionCode.h"
38 #include "core/dom/WebCoreMemoryInstrumentation.h"
39 #include <wtf/MemoryInstrumentationVector.h> 39 #include <wtf/MemoryInstrumentationVector.h>
40 #include <wtf/text/StringBuilder.h> 40 #include <wtf/text/StringBuilder.h>
41 41
42 namespace WebCore { 42 namespace WebCore {
43 43
44 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet* parent) 44 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet* parent)
45 : CSSGroupingRule(supportsRule, parent) 45 : CSSGroupingRule(supportsRule, parent)
46 { 46 {
47 } 47 }
48 48
49 String CSSSupportsRule::cssText() const 49 String CSSSupportsRule::cssText() const
50 { 50 {
51 StringBuilder result; 51 StringBuilder result;
52 52
53 result.append("@supports "); 53 result.append("@supports ");
54 result.append(conditionText()); 54 result.append(conditionText());
55 result.append(" {\n"); 55 result.append(" {\n");
56 appendCssTextForItems(result); 56 appendCssTextForItems(result);
57 result.append('}'); 57 result.append('}');
58 58
59 return result.toString(); 59 return result.toString();
60 } 60 }
61 61
62 String CSSSupportsRule::conditionText() const 62 String CSSSupportsRule::conditionText() const
63 { 63 {
64 return toStyleRuleSupports(m_groupRule.get())->conditionText(); 64 return toStyleRuleSupports(m_groupRule.get())->conditionText();
65 } 65 }
66 66
67 } // namespace WebCore 67 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSStyleSheet.cpp ('k') | Source/core/css/CSSTimingFunctionValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698