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