| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 void setContinuousSpellCheckingEnabled(boolean enabled); | 148 void setContinuousSpellCheckingEnabled(boolean enabled); |
| 149 | 149 |
| 150 [TypeChecking=Interface] boolean isOverwriteModeEnabled(Document document); | 150 [TypeChecking=Interface] boolean isOverwriteModeEnabled(Document document); |
| 151 [TypeChecking=Interface] void toggleOverwriteModeEnabled(Document document); | 151 [TypeChecking=Interface] void toggleOverwriteModeEnabled(Document document); |
| 152 | 152 |
| 153 [TypeChecking=Interface] unsigned long numberOfScrollableAreas(Document docu
ment); | 153 [TypeChecking=Interface] unsigned long numberOfScrollableAreas(Document docu
ment); |
| 154 | 154 |
| 155 [TypeChecking=Interface] boolean isPageBoxVisible(Document document, long pa
geNumber); | 155 [TypeChecking=Interface] boolean isPageBoxVisible(Document document, long pa
geNumber); |
| 156 | 156 |
| 157 readonly attribute InternalSettings settings; | 157 readonly attribute InternalSettings settings; |
| 158 readonly attribute InternalProfilers profilers; | |
| 159 readonly attribute InternalRuntimeFlags runtimeFlags; | 158 readonly attribute InternalRuntimeFlags runtimeFlags; |
| 160 readonly attribute unsigned long workerThreadCount; | 159 readonly attribute unsigned long workerThreadCount; |
| 161 | 160 |
| 162 // Flags for layerTreeAsText. | 161 // Flags for layerTreeAsText. |
| 163 // The values of these constants must be kept in sync with the values of Lay
erTreeAsTextBehaviorFlags in GraphicsLayerClient.h. | 162 // The values of these constants must be kept in sync with the values of Lay
erTreeAsTextBehaviorFlags in GraphicsLayerClient.h. |
| 164 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2; | 163 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2; |
| 165 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; | 164 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; |
| 166 const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; | 165 const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; |
| 167 const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; | 166 const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; |
| 168 [RaisesException, TypeChecking=Interface] DOMString layerTreeAsText(Document
document, optional unsigned short flags); | 167 [RaisesException, TypeChecking=Interface] DOMString layerTreeAsText(Document
document, optional unsigned short flags); |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 | 283 |
| 285 DOMString serializeNavigationMarkup(); | 284 DOMString serializeNavigationMarkup(); |
| 286 void hideAllTransitionElements(); | 285 void hideAllTransitionElements(); |
| 287 | 286 |
| 288 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); | 287 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); |
| 289 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, Dictionary options); | 288 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, Dictionary options); |
| 290 | 289 |
| 291 DictionaryTest dictionaryTest(); | 290 DictionaryTest dictionaryTest(); |
| 292 UnionTypesTest unionTypesTest(); | 291 UnionTypesTest unionTypesTest(); |
| 293 }; | 292 }; |
| OLD | NEW |