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