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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 readonly attribute InternalSettings settings; | 169 readonly attribute InternalSettings settings; |
170 readonly attribute unsigned long workerThreadCount; | 170 readonly attribute unsigned long workerThreadCount; |
171 | 171 |
172 // Flags for layerTreeAsText. | 172 // Flags for layerTreeAsText. |
173 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; | 173 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; |
174 const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2; | 174 const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2; |
175 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; | 175 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; |
176 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 8; | 176 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 8; |
177 [RaisesException] DOMString layerTreeAsText(Document document, optional unsi
gned short flags); | 177 [RaisesException] DOMString layerTreeAsText(Document document, optional unsi
gned short flags); |
178 | 178 |
| 179 [RaisesException] DOMString paintOrderListsAsText(Element element); |
| 180 [RaisesException] PaintOrderLists paintOrderLists(Element element); |
| 181 |
179 [RaisesException] DOMString scrollingStateTreeAsText(Document document); | 182 [RaisesException] DOMString scrollingStateTreeAsText(Document document); |
180 [RaisesException] DOMString mainThreadScrollingReasons(Document document); | 183 [RaisesException] DOMString mainThreadScrollingReasons(Document document); |
181 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 184 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
182 | 185 |
183 [RaisesException] DOMString repaintRectsAsText(Document document); | 186 [RaisesException] DOMString repaintRectsAsText(Document document); |
184 | 187 |
185 [RaisesException] void garbageCollectDocumentResources(Document document); | 188 [RaisesException] void garbageCollectDocumentResources(Document document); |
186 | 189 |
187 void allowRoundingHacks(); | 190 void allowRoundingHacks(); |
188 | 191 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 [Conditional=VIDEO] void simulateAudioInterruption(Node node); | 250 [Conditional=VIDEO] void simulateAudioInterruption(Node node); |
248 | 251 |
249 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 252 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
250 | 253 |
251 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); | 254 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); |
252 | 255 |
253 [RaisesException] DOMString getImageSourceURL(Element element); | 256 [RaisesException] DOMString getImageSourceURL(Element element); |
254 | 257 |
255 boolean isSelectPopupVisible(Node node); | 258 boolean isSelectPopupVisible(Node node); |
256 }; | 259 }; |
OLD | NEW |