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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 readonly attribute InternalSettings settings; | 165 readonly attribute InternalSettings settings; |
166 readonly attribute unsigned long workerThreadCount; | 166 readonly attribute unsigned long workerThreadCount; |
167 | 167 |
168 // Flags for layerTreeAsText. | 168 // Flags for layerTreeAsText. |
169 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; | 169 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; |
170 const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2; | 170 const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2; |
171 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; | 171 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; |
172 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 8; | 172 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 8; |
173 [RaisesException] DOMString layerTreeAsText(Document document, optional unsi
gned short flags); | 173 [RaisesException] DOMString layerTreeAsText(Document document, optional unsi
gned short flags); |
174 | 174 |
| 175 [RaisesException] NodeList paintOrderListBeforePromote(Element element); |
| 176 [RaisesException] NodeList paintOrderListAfterPromote(Element element); |
| 177 |
175 [RaisesException] DOMString scrollingStateTreeAsText(Document document); | 178 [RaisesException] DOMString scrollingStateTreeAsText(Document document); |
176 [RaisesException] DOMString mainThreadScrollingReasons(Document document); | 179 [RaisesException] DOMString mainThreadScrollingReasons(Document document); |
177 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 180 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
178 | 181 |
179 [RaisesException] DOMString repaintRectsAsText(Document document); | 182 [RaisesException] DOMString repaintRectsAsText(Document document); |
180 | 183 |
181 [RaisesException] void garbageCollectDocumentResources(Document document); | 184 [RaisesException] void garbageCollectDocumentResources(Document document); |
182 | 185 |
183 void allowRoundingHacks(); | 186 void allowRoundingHacks(); |
184 | 187 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 void forceReload(boolean endToEnd); | 241 void forceReload(boolean endToEnd); |
239 | 242 |
240 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 243 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
241 | 244 |
242 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); | 245 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); |
243 | 246 |
244 [RaisesException] DOMString getImageSourceURL(Element element); | 247 [RaisesException] DOMString getImageSourceURL(Element element); |
245 | 248 |
246 boolean isSelectPopupVisible(Node node); | 249 boolean isSelectPopupVisible(Node node); |
247 }; | 250 }; |
OLD | NEW |