| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 #endif | 162 #endif |
| 163 | 163 |
| 164 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; | 164 bool RuntimeEnabledFeatures::isStyleScopedEnabled = false; |
| 165 | 165 |
| 166 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) | 166 #if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE) |
| 167 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; | 167 bool RuntimeEnabledFeatures::isInputTypeDateTimeEnabled = false; |
| 168 #endif | 168 #endif |
| 169 | 169 |
| 170 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true; | 170 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true; |
| 171 | 171 |
| 172 #if ENABLE(DIALOG_ELEMENT) | |
| 173 bool RuntimeEnabledFeatures::isDialogElementEnabled = false; | 172 bool RuntimeEnabledFeatures::isDialogElementEnabled = false; |
| 174 #endif | |
| 175 | 173 |
| 176 bool RuntimeEnabledFeatures::isLazyLayoutEnabled = false; | 174 bool RuntimeEnabledFeatures::isLazyLayoutEnabled = false; |
| 177 | 175 |
| 178 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false; | 176 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false; |
| 179 | 177 |
| 180 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled
= false; | 178 bool RuntimeEnabledFeatures::areExperimentalContentSecurityPolicyFeaturesEnabled
= false; |
| 181 | 179 |
| 182 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; | 180 bool RuntimeEnabledFeatures::areSeamlessIFramesEnabled = false; |
| 183 | 181 |
| 184 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; | 182 bool RuntimeEnabledFeatures::isFontLoadEventsEnabled = false; |
| 185 | 183 |
| 186 bool RuntimeEnabledFeatures::isWebPInAcceptHeaderEnabled = false; | 184 bool RuntimeEnabledFeatures::isWebPInAcceptHeaderEnabled = false; |
| 187 | 185 |
| 188 bool RuntimeEnabledFeatures::isIMEAPIEnabled = false; | 186 bool RuntimeEnabledFeatures::isIMEAPIEnabled = false; |
| 189 | 187 |
| 190 } // namespace WebCore | 188 } // namespace WebCore |
| OLD | NEW |