| 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 17 matching lines...) Expand all Loading... |
| 28 DoNotCheckConstants, | 28 DoNotCheckConstants, |
| 29 ConstructorCallWith=ScriptState, | 29 ConstructorCallWith=ScriptState, |
| 30 ] interface Internals { | 30 ] interface Internals { |
| 31 DOMString address(Node node); | 31 DOMString address(Node node); |
| 32 | 32 |
| 33 GCObservation observeGC(any observed); | 33 GCObservation observeGC(any observed); |
| 34 | 34 |
| 35 [RaisesException] DOMString elementLayoutTreeAsText(Element element); | 35 [RaisesException] DOMString elementLayoutTreeAsText(Element element); |
| 36 boolean isPreloaded(DOMString url); | 36 boolean isPreloaded(DOMString url); |
| 37 boolean isPreloadedBy(DOMString url, Document document); | 37 boolean isPreloadedBy(DOMString url, Document document); |
| 38 boolean isLoading(DOMString url); |
| 38 boolean isLoadingFromMemoryCache(DOMString url); | 39 boolean isLoadingFromMemoryCache(DOMString url); |
| 39 unsigned long getResourcePriority (DOMString url, Document document); | 40 unsigned long getResourcePriority (DOMString url, Document document); |
| 40 DOMString getResourceHeader (DOMString url, DOMString header, Document docum
ent); | 41 DOMString getResourceHeader (DOMString url, DOMString header, Document docum
ent); |
| 41 | 42 |
| 42 boolean isSharingStyle(Element element1, Element element2); | 43 boolean isSharingStyle(Element element1, Element element2); |
| 43 | 44 |
| 44 CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node); | 45 CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node); |
| 45 | 46 |
| 46 ShadowRoot createUserAgentShadowRoot(Element host); | 47 ShadowRoot createUserAgentShadowRoot(Element host); |
| 47 | 48 |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 DOMString getScrollAnimationState(Node node); | 357 DOMString getScrollAnimationState(Node node); |
| 357 | 358 |
| 358 DOMString getProgrammaticScrollAnimationState(Node node); | 359 DOMString getProgrammaticScrollAnimationState(Node node); |
| 359 | 360 |
| 360 ClientRect visualRect(Node node); | 361 ClientRect visualRect(Node node); |
| 361 | 362 |
| 362 OriginTrialsTest originTrialsTest(); | 363 OriginTrialsTest originTrialsTest(); |
| 363 | 364 |
| 364 void crash(); | 365 void crash(); |
| 365 }; | 366 }; |
| OLD | NEW |