| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 162     readonly attribute unsigned long workerThreadCount; | 162     readonly attribute unsigned long workerThreadCount; | 
| 163 | 163 | 
| 164     // Flags for layerTreeAsText. | 164     // Flags for layerTreeAsText. | 
| 165     // The values of these constants must be kept in sync with the values of Lay
     erTreeAsTextBehaviorFlags in GraphicsLayerClient.h. | 165     // The values of these constants must be kept in sync with the values of Lay
     erTreeAsTextBehaviorFlags in GraphicsLayerClient.h. | 
| 166     const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2; | 166     const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2; | 
| 167     const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; | 167     const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; | 
| 168     const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; | 168     const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; | 
| 169     const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; | 169     const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; | 
| 170     const unsigned short LAYER_TREE_INCLUDES_SCROLL_BLOCKS_ON = 32; | 170     const unsigned short LAYER_TREE_INCLUDES_SCROLL_BLOCKS_ON = 32; | 
| 171     const unsigned short LAYER_TREE_INCLUDES_PAINT_INVALIDATION_OBJECTS = 64; | 171     const unsigned short LAYER_TREE_INCLUDES_PAINT_INVALIDATION_OBJECTS = 64; | 
|  | 172     const unsigned short LAYER_TREE_INCLUDES_COMPOSITING_REASONS = 128; | 
| 172     [RaisesException, TypeChecking=Interface] DOMString layerTreeAsText(Document
      document, optional unsigned short flags); | 173     [RaisesException, TypeChecking=Interface] DOMString layerTreeAsText(Document
      document, optional unsigned short flags); | 
| 173     [RaisesException, TypeChecking=Interface] DOMString elementLayerTreeAsText(E
     lement element, optional unsigned short flags); | 174     [RaisesException, TypeChecking=Interface] DOMString elementLayerTreeAsText(E
     lement element, optional unsigned short flags); | 
| 174 | 175 | 
| 175     [RaisesException, TypeChecking=Interface] boolean scrollsWithRespectTo(Eleme
     nt element1, Element element2); | 176     [RaisesException, TypeChecking=Interface] boolean scrollsWithRespectTo(Eleme
     nt element1, Element element2); | 
| 176 | 177 | 
| 177     [TypeChecking=Interface] DOMString scrollingStateTreeAsText(Document documen
     t); | 178     [TypeChecking=Interface] DOMString scrollingStateTreeAsText(Document documen
     t); | 
| 178     [RaisesException, TypeChecking=Interface] DOMString mainThreadScrollingReaso
     ns(Document document); | 179     [RaisesException, TypeChecking=Interface] DOMString mainThreadScrollingReaso
     ns(Document document); | 
| 179     [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe
     cts(Document document); | 180     [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe
     cts(Document document); | 
| 180 | 181 | 
| 181     [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum
     ent); | 182     [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum
     ent); | 
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 306 | 307 | 
| 307     boolean isUseCounted(Document document, long useCounterId); | 308     boolean isUseCounted(Document document, long useCounterId); | 
| 308 | 309 | 
| 309     iterable<long>; | 310     iterable<long>; | 
| 310 | 311 | 
| 311     [Unscopeable] readonly attribute DOMString unscopeableAttribute; | 312     [Unscopeable] readonly attribute DOMString unscopeableAttribute; | 
| 312     [Unscopeable] DOMString unscopeableMethod(); | 313     [Unscopeable] DOMString unscopeableMethod(); | 
| 313 | 314 | 
| 314     ClientRectList focusRingRects(Element element); | 315     ClientRectList focusRingRects(Element element); | 
| 315 }; | 316 }; | 
| OLD | NEW | 
|---|