| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 #endif | 174 #endif |
| 175 | 175 |
| 176 #if ENABLE(STYLE_SCOPED) | 176 #if ENABLE(STYLE_SCOPED) |
| 177 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; | 177 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; |
| 178 #endif | 178 #endif |
| 179 | 179 |
| 180 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) | 180 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) |
| 181 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; | 181 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; |
| 182 #endif | 182 #endif |
| 183 | 183 |
| 184 #if ENABLE(INPUT_TYPE_WEEK) | |
| 185 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true; | 184 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true; |
| 186 #endif | |
| 187 | 185 |
| 188 #if ENABLE(DIALOG_ELEMENT) | 186 #if ENABLE(DIALOG_ELEMENT) |
| 189 bool RuntimeEnabledFeatures::isDialogElementEnabled = false; | 187 bool RuntimeEnabledFeatures::isDialogElementEnabled = false; |
| 190 #endif | 188 #endif |
| 191 | 189 |
| 192 #if ENABLE(REQUEST_AUTOCOMPLETE) | 190 #if ENABLE(REQUEST_AUTOCOMPLETE) |
| 193 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false; | 191 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false; |
| 194 #endif | 192 #endif |
| 195 | 193 |
| 196 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled
= false; | 194 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled
= false; |
| 197 | 195 |
| 198 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; | 196 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; |
| 199 | 197 |
| 200 #if ENABLE(FONT_LOAD_EVENTS) | 198 #if ENABLE(FONT_LOAD_EVENTS) |
| 201 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; | 199 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; |
| 202 #endif | 200 #endif |
| 203 | 201 |
| 204 } // namespace WebCore | 202 } // namespace WebCore |
| OLD | NEW |