Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 2260303002: Sending an async GET request for doc.written blocked scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows compile error for GetResourcePriority return type fixed. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 18 matching lines...) Expand all
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 isLoadingFromMemoryCache(DOMString url); 38 boolean isLoadingFromMemoryCache(DOMString url);
39 unsigned long getResourcePriority (DOMString url, Document document);
Nate Chapin 2016/09/16 21:37:53 Nit: suprious whitespace after getResourcePriority
39 40
40 boolean isSharingStyle(Element element1, Element element2); 41 boolean isSharingStyle(Element element1, Element element2);
41 42
42 CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node); 43 CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node);
43 44
44 ShadowRoot createUserAgentShadowRoot(Element host); 45 ShadowRoot createUserAgentShadowRoot(Element host);
45 46
46 ShadowRoot shadowRoot(Element host); 47 ShadowRoot shadowRoot(Element host);
47 ShadowRoot youngestShadowRoot(Element host); 48 ShadowRoot youngestShadowRoot(Element host);
48 ShadowRoot oldestShadowRoot(Element host); 49 ShadowRoot oldestShadowRoot(Element host);
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698