Changeset 150025 in webkit
- Timestamp:
- May 13, 2013, 11:37:13 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/exclusions/css-exclusions-enabled-expected.txt (added)
-
LayoutTests/fast/exclusions/css-exclusions-enabled.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r150023 r150025 1 2013-05-13 Bear Travis <betravis@adobe.com> 2 3 [css exclusions] Enable CSS Exclusions by default when CSS_EXCLUSIONS is set 4 https://bugs.webkit.org/show_bug.cgi?id=115919 5 6 Reviewed by Dean Jackson. 7 8 Adding a test to make sure CSS Exclusions can be enabled, and are enabled by 9 default. 10 11 * fast/exclusions/css-exclusions-enabled-expected.txt: Added. 12 * fast/exclusions/css-exclusions-enabled.html: Added. 13 1 14 2013-05-13 Suchit Agrawal <a.suchit@samsung.com> 2 15 -
trunk/Source/WebCore/ChangeLog
r150023 r150025 1 2013-05-13 Bear Travis <betravis@adobe.com> 2 3 [css exclusions] Enable CSS Exclusions by default when CSS_EXCLUSIONS is set 4 https://bugs.webkit.org/show_bug.cgi?id=115919 5 6 Reviewed by Dean Jackson. 7 8 Change the RuntimeEnabledFeatures::isCSSExclusionsEnabled boolean to default 9 to true. CSS Exclusions can still be enabled / disabled in platforms by 10 setting the CSS_EXCLUSIONS compile flag in one of the FeatureDefine files. 11 12 Test: fast/exclusions/css-exclusions-enabled.html 13 14 * bindings/generic/RuntimeEnabledFeatures.cpp: 15 (WebCore): 16 1 17 2013-05-13 Suchit Agrawal <a.suchit@samsung.com> 2 18 -
trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp
r148731 r150025 56 56 bool RuntimeEnabledFeatures::isSpeechInputEnabled = true; 57 57 bool RuntimeEnabledFeatures::isCanvasPathEnabled = false; 58 bool RuntimeEnabledFeatures::isCSSExclusionsEnabled = false;58 bool RuntimeEnabledFeatures::isCSSExclusionsEnabled = true; 59 59 bool RuntimeEnabledFeatures::isCSSRegionsEnabled = false; 60 60 bool RuntimeEnabledFeatures::isCSSCompositingEnabled = false;
Note:
See TracChangeset
for help on using the changeset viewer.