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

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

Issue 15864004: Move create() methods from StylePropertySet to MutableStylePropertySet. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSParser.cpp ('k') | Source/core/css/FontLoader.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 /* 1 /*
2 * Copyright (C) 2012 Motorola Mobility Inc. All rights reserved. 2 * Copyright (C) 2012 Motorola Mobility Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above 10 * 2. Redistributions in binary form must reproduce the above
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 67
68 // CSSParser::parseValue() won't work correctly if !important is present, 68 // CSSParser::parseValue() won't work correctly if !important is present,
69 // so just get rid of it. It doesn't matter to supports() if it's actually 69 // so just get rid of it. It doesn't matter to supports() if it's actually
70 // there or not, provided how it's specified in the value is correct. 70 // there or not, provided how it's specified in the value is correct.
71 String normalizedValue = value.stripWhiteSpace().simplifyWhiteSpace(); 71 String normalizedValue = value.stripWhiteSpace().simplifyWhiteSpace();
72 normalizedValue = valueWithoutImportant(normalizedValue); 72 normalizedValue = valueWithoutImportant(normalizedValue);
73 73
74 if (normalizedValue.isEmpty()) 74 if (normalizedValue.isEmpty())
75 return false; 75 return false;
76 76
77 RefPtr<StylePropertySet> dummyStyle = StylePropertySet::create(); 77 RefPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create ();
78 return CSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, CSSStrictMode, 0); 78 return CSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, CSSStrictMode, 0);
79 } 79 }
80 80
81 bool DOMWindowCSS::supports(const String& conditionText) const 81 bool DOMWindowCSS::supports(const String& conditionText) const
82 { 82 {
83 CSSParserContext context(CSSStrictMode); 83 CSSParserContext context(CSSStrictMode);
84 CSSParser parser(context); 84 CSSParser parser(context);
85 return parser.parseSupportsCondition(conditionText); 85 return parser.parseSupportsCondition(conditionText);
86 } 86 }
87 87
88 } 88 }
OLDNEW
« no previous file with comments | « Source/core/css/CSSParser.cpp ('k') | Source/core/css/FontLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698