OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007-2009 Torch Mobile, Inc. | 3 * Copyright (C) 2007-2009 Torch Mobile, Inc. |
4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. | 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. |
5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
6 * | 6 * |
7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
9 * are met: | 9 * are met: |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 #endif | 97 #endif |
98 | 98 |
99 #if !defined(ENABLE_CSS3_TEXT) | 99 #if !defined(ENABLE_CSS3_TEXT) |
100 #define ENABLE_CSS3_TEXT 0 | 100 #define ENABLE_CSS3_TEXT 0 |
101 #endif | 101 #endif |
102 | 102 |
103 #if !defined(ENABLE_CSS_DEVICE_ADAPTATION) | 103 #if !defined(ENABLE_CSS_DEVICE_ADAPTATION) |
104 #define ENABLE_CSS_DEVICE_ADAPTATION 0 | 104 #define ENABLE_CSS_DEVICE_ADAPTATION 0 |
105 #endif | 105 #endif |
106 | 106 |
107 #if !defined(ENABLE_CSS_COMPOSITING) | |
108 #define ENABLE_CSS_COMPOSITING 0 | |
109 #endif | |
110 | |
111 #if !defined(ENABLE_CSS_FILTERS) | 107 #if !defined(ENABLE_CSS_FILTERS) |
112 #define ENABLE_CSS_FILTERS 0 | 108 #define ENABLE_CSS_FILTERS 0 |
113 #endif | 109 #endif |
114 | 110 |
115 #if !defined(ENABLE_CSS_IMAGE_ORIENTATION) | 111 #if !defined(ENABLE_CSS_IMAGE_ORIENTATION) |
116 #define ENABLE_CSS_IMAGE_ORIENTATION 0 | 112 #define ENABLE_CSS_IMAGE_ORIENTATION 0 |
117 #endif | 113 #endif |
118 | 114 |
119 #if !defined(ENABLE_CSS_IMAGE_RESOLUTION) | 115 #if !defined(ENABLE_CSS_IMAGE_RESOLUTION) |
120 #define ENABLE_CSS_IMAGE_RESOLUTION 0 | 116 #define ENABLE_CSS_IMAGE_RESOLUTION 0 |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 | 370 |
375 #if ENABLE(SVG_DOM_OBJC_BINDINGS) && !ENABLE(SVG) | 371 #if ENABLE(SVG_DOM_OBJC_BINDINGS) && !ENABLE(SVG) |
376 #error "ENABLE(SVG_DOM_OBJC_BINDINGS) requires ENABLE(SVG)" | 372 #error "ENABLE(SVG_DOM_OBJC_BINDINGS) requires ENABLE(SVG)" |
377 #endif | 373 #endif |
378 | 374 |
379 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) | 375 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) |
380 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" | 376 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" |
381 #endif | 377 #endif |
382 | 378 |
383 #endif /* WTF_FeatureDefines_h */ | 379 #endif /* WTF_FeatureDefines_h */ |
OLD | NEW |