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