| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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); | 177 [RaisesException] NodeList paintOrderListBeforePromote(Element element); |
| 178 [RaisesException] NodeList paintOrderListAfterPromote(Element element); | 178 [RaisesException] NodeList paintOrderListAfterPromote(Element element); |
| 179 | 179 |
| 180 const unsigned short DoNotForceCompositedScrolling = 0; |
| 181 const unsigned short ForceCompositedScrollingOn = 1; |
| 182 const unsigned short ForceCompositedScrollingOff = 2; |
| 183 [RaisesException] void setNeedsCompositedScrolling(Element element, unsigned
short value); |
| 184 |
| 180 [RaisesException] DOMString scrollingStateTreeAsText(Document document); | 185 [RaisesException] DOMString scrollingStateTreeAsText(Document document); |
| 181 [RaisesException] DOMString mainThreadScrollingReasons(Document document); | 186 [RaisesException] DOMString mainThreadScrollingReasons(Document document); |
| 182 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 187 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
| 183 | 188 |
| 184 [RaisesException] DOMString repaintRectsAsText(Document document); | 189 [RaisesException] DOMString repaintRectsAsText(Document document); |
| 185 | 190 |
| 186 [RaisesException] void garbageCollectDocumentResources(Document document); | 191 [RaisesException] void garbageCollectDocumentResources(Document document); |
| 187 | 192 |
| 188 void allowRoundingHacks(); | 193 void allowRoundingHacks(); |
| 189 | 194 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 void forceReload(boolean endToEnd); | 248 void forceReload(boolean endToEnd); |
| 244 | 249 |
| 245 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 250 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
| 246 | 251 |
| 247 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); | 252 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); |
| 248 | 253 |
| 249 [RaisesException] DOMString getImageSourceURL(Element element); | 254 [RaisesException] DOMString getImageSourceURL(Element element); |
| 250 | 255 |
| 251 boolean isSelectPopupVisible(Node node); | 256 boolean isSelectPopupVisible(Node node); |
| 252 }; | 257 }; |
| OLD | NEW |