| 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 void clearNetworkConnectionInfoOverride(); | 303 void clearNetworkConnectionInfoOverride(); |
| 304 | 304 |
| 305 // This function is for testing HitRegions on Canvas2D. | 305 // This function is for testing HitRegions on Canvas2D. |
| 306 unsigned long countHitRegions(CanvasRenderingContext2D context); | 306 unsigned long countHitRegions(CanvasRenderingContext2D context); |
| 307 | 307 |
| 308 boolean isInCanvasFontCache(Document document, DOMString fontString); | 308 boolean isInCanvasFontCache(Document document, DOMString fontString); |
| 309 unsigned long canvasFontCacheMaxFonts(); | 309 unsigned long canvasFontCacheMaxFonts(); |
| 310 | 310 |
| 311 DictionaryTest dictionaryTest(); | 311 DictionaryTest dictionaryTest(); |
| 312 UnionTypesTest unionTypesTest(); | 312 UnionTypesTest unionTypesTest(); |
| 313 CallbackFunctionTest callbackFunctionTest(); |
| 313 [RaisesException] void setScrollChain(ScrollState scrollState, Element[] ele
ments); | 314 [RaisesException] void setScrollChain(ScrollState scrollState, Element[] ele
ments); |
| 314 void forceBlinkGCWithoutV8GC(); | 315 void forceBlinkGCWithoutV8GC(); |
| 315 | 316 |
| 316 DOMString selectedHTMLForClipboard(); | 317 DOMString selectedHTMLForClipboard(); |
| 317 DOMString selectedTextForClipboard(); | 318 DOMString selectedTextForClipboard(); |
| 318 | 319 |
| 319 void setVisualViewportOffset(long x, long y); | 320 void setVisualViewportOffset(long x, long y); |
| 320 int visualViewportHeight(); | 321 int visualViewportHeight(); |
| 321 int visualViewportWidth(); | 322 int visualViewportWidth(); |
| 322 double visualViewportScrollX(); | 323 double visualViewportScrollX(); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 348 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); | 349 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); |
| 349 | 350 |
| 350 DOMString getScrollAnimationState(Node node); | 351 DOMString getScrollAnimationState(Node node); |
| 351 | 352 |
| 352 DOMString getProgrammaticScrollAnimationState(Node node); | 353 DOMString getProgrammaticScrollAnimationState(Node node); |
| 353 | 354 |
| 354 ClientRect visualRect(Node node); | 355 ClientRect visualRect(Node node); |
| 355 | 356 |
| 356 void crash(); | 357 void crash(); |
| 357 }; | 358 }; |
| OLD | NEW |