| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 #endif | 179 #endif |
| 180 | 180 |
| 181 #if ENABLE(CUSTOM_ELEMENTS) | 181 #if ENABLE(CUSTOM_ELEMENTS) |
| 182 bool RuntimeEnabledFeatures::isCustomDOMElementsEnabled = false; | 182 bool RuntimeEnabledFeatures::isCustomDOMElementsEnabled = false; |
| 183 #endif | 183 #endif |
| 184 | 184 |
| 185 #if ENABLE(STYLE_SCOPED) | 185 #if ENABLE(STYLE_SCOPED) |
| 186 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; | 186 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; |
| 187 #endif | 187 #endif |
| 188 | 188 |
| 189 #if ENABLE(INPUT_TYPE_DATE) | |
| 190 bool RuntimeEnabledFeatures::isInputTypeDateEnabled = true; | |
| 191 #endif | |
| 192 | |
| 193 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) | 189 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) |
| 194 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; | 190 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; |
| 195 #endif | 191 #endif |
| 196 | 192 |
| 197 #if ENABLE(INPUT_TYPE_DATETIMELOCAL) | 193 #if ENABLE(INPUT_TYPE_DATETIMELOCAL) |
| 198 bool RuntimeEnabledFeatures::isInputTypeDateTimeLocalEnabled = true; | 194 bool RuntimeEnabledFeatures::isInputTypeDateTimeLocalEnabled = true; |
| 199 #endif | 195 #endif |
| 200 | 196 |
| 201 #if ENABLE(INPUT_TYPE_MONTH) | 197 #if ENABLE(INPUT_TYPE_MONTH) |
| 202 bool RuntimeEnabledFeatures::isInputTypeMonthEnabled = true; | 198 bool RuntimeEnabledFeatures::isInputTypeMonthEnabled = true; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 220 | 216 |
| 221 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled
= false; | 217 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled
= false; |
| 222 | 218 |
| 223 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; | 219 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; |
| 224 | 220 |
| 225 #if ENABLE(FONT_LOAD_EVENTS) | 221 #if ENABLE(FONT_LOAD_EVENTS) |
| 226 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; | 222 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; |
| 227 #endif | 223 #endif |
| 228 | 224 |
| 229 } // namespace WebCore | 225 } // namespace WebCore |
| OLD | NEW |