| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 readonly attribute unsigned long workerThreadCount; | 181 readonly attribute unsigned long workerThreadCount; |
| 182 | 182 |
| 183 // Flags for layerTreeAsText. | 183 // Flags for layerTreeAsText. |
| 184 // The values of these constants must be kept in sync with the values of Lay
erTreeFlags in GraphicsLayerClient.h. | 184 // The values of these constants must be kept in sync with the values of Lay
erTreeFlags in GraphicsLayerClient.h. |
| 185 const unsigned short LAYER_TREE_INCLUDES_DEBUG_INFO = 1; | 185 const unsigned short LAYER_TREE_INCLUDES_DEBUG_INFO = 1; |
| 186 const unsigned short LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS = 2; | 186 const unsigned short LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS = 2; |
| 187 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; | 187 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; |
| 188 const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; | 188 const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; |
| 189 const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; | 189 const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; |
| 190 const unsigned short LAYER_TREE_INCLUDES_COMPOSITING_REASONS = 32; | 190 const unsigned short LAYER_TREE_INCLUDES_COMPOSITING_REASONS = 32; |
| 191 const unsigned short OUTPUT_CHILDREN_AS_LAYER_LIST = 64; | 191 const unsigned short OUTPUT_AS_LAYER_TREE = 64; |
| 192 | 192 |
| 193 [RaisesException] DOMString layerTreeAsText(Document document, optional unsi
gned short flags); | 193 [RaisesException] DOMString layerTreeAsText(Document document, optional unsi
gned short flags); |
| 194 [RaisesException] DOMString elementLayerTreeAsText(Element element, optional
unsigned short flags); | 194 [RaisesException] DOMString elementLayerTreeAsText(Element element, optional
unsigned short flags); |
| 195 | 195 |
| 196 [RaisesException] boolean scrollsWithRespectTo(Element element1, Element ele
ment2); | 196 [RaisesException] boolean scrollsWithRespectTo(Element element1, Element ele
ment2); |
| 197 | 197 |
| 198 DOMString scrollingStateTreeAsText(Document document); | 198 DOMString scrollingStateTreeAsText(Document document); |
| 199 [RaisesException] DOMString mainThreadScrollingReasons(Document document); | 199 [RaisesException] DOMString mainThreadScrollingReasons(Document document); |
| 200 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 200 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
| 201 | 201 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 DOMString getScrollAnimationState(Node node); | 357 DOMString getScrollAnimationState(Node node); |
| 358 | 358 |
| 359 DOMString getProgrammaticScrollAnimationState(Node node); | 359 DOMString getProgrammaticScrollAnimationState(Node node); |
| 360 | 360 |
| 361 ClientRect visualRect(Node node); | 361 ClientRect visualRect(Node node); |
| 362 | 362 |
| 363 OriginTrialsTest originTrialsTest(); | 363 OriginTrialsTest originTrialsTest(); |
| 364 | 364 |
| 365 void crash(); | 365 void crash(); |
| 366 }; | 366 }; |
| OLD | NEW |