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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 readonly attribute InternalSettings settings; | 179 readonly attribute InternalSettings settings; |
180 readonly attribute unsigned long workerThreadCount; | 180 readonly attribute unsigned long workerThreadCount; |
181 | 181 |
182 // Flags for layerTreeAsText. | 182 // Flags for layerTreeAsText. |
183 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; | 183 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; |
184 const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2; | 184 const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2; |
185 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; | 185 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; |
186 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 8; | 186 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 8; |
187 DOMString layerTreeAsText(Document document, [Optional] unsigned short flags
) raises (DOMException); | 187 DOMString layerTreeAsText(Document document, [Optional] unsigned short flags
) raises (DOMException); |
188 | 188 |
| 189 DOMString paintOrderListsAsText(in Element element) raises (DOMException); |
| 190 PaintOrderLists paintOrderLists(in Element element) raises (DOMException); |
| 191 |
189 DOMString scrollingStateTreeAsText(Document document) raises (DOMException); | 192 DOMString scrollingStateTreeAsText(Document document) raises (DOMException); |
190 DOMString mainThreadScrollingReasons(Document document) raises (DOMException
); | 193 DOMString mainThreadScrollingReasons(Document document) raises (DOMException
); |
191 ClientRectList nonFastScrollableRects(Document document) raises (DOMExceptio
n); | 194 ClientRectList nonFastScrollableRects(Document document) raises (DOMExceptio
n); |
192 | 195 |
193 DOMString repaintRectsAsText(Document document) raises (DOMException); | 196 DOMString repaintRectsAsText(Document document) raises (DOMException); |
194 | 197 |
195 void garbageCollectDocumentResources(Document document) raises (DOMException
); | 198 void garbageCollectDocumentResources(Document document) raises (DOMException
); |
196 | 199 |
197 void allowRoundingHacks(); | 200 void allowRoundingHacks(); |
198 | 201 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 [Conditional=VIDEO] void simulateAudioInterruption(Node node); | 268 [Conditional=VIDEO] void simulateAudioInterruption(Node node); |
266 | 269 |
267 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 270 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
268 | 271 |
269 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); | 272 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); |
270 | 273 |
271 DOMString getImageSourceURL(Element element) raises(DOMException); | 274 DOMString getImageSourceURL(Element element) raises(DOMException); |
272 | 275 |
273 boolean isSelectPopupVisible(Node node); | 276 boolean isSelectPopupVisible(Node node); |
274 }; | 277 }; |
OLD | NEW |