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

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

Issue 370843002: Allow touch adjustment to return Shadow DOM node. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add simple shadow dom test Created 6 years, 5 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 | Annotate | Revision Log
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 [RaisesException] DOMString styleResolverStatsTotalsReport(); 43 [RaisesException] DOMString styleResolverStatsTotalsReport();
44 44
45 [RaisesException] boolean isSharingStyle(Element element1, Element element2) ; 45 [RaisesException] boolean isSharingStyle(Element element1, Element element2) ;
46 46
47 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node); 47 [RaisesException] CSSStyleDeclaration computedStyleIncludingVisitedInfo(Node node);
48 48
49 [RaisesException] ShadowRoot shadowRoot(Element host); 49 [RaisesException] ShadowRoot shadowRoot(Element host);
50 [RaisesException] ShadowRoot youngestShadowRoot(Element host); 50 [RaisesException] ShadowRoot youngestShadowRoot(Element host);
51 [RaisesException] ShadowRoot oldestShadowRoot(Element host); 51 [RaisesException] ShadowRoot oldestShadowRoot(Element host);
52 [RaisesException] ShadowRoot youngerShadowRoot(Node root); 52 [RaisesException] ShadowRoot youngerShadowRoot(Node root);
53 [RaisesException] Element shadowHost(Node node);
53 54
54 [RaisesException] DOMString shadowRootType(Node root); 55 [RaisesException] DOMString shadowRootType(Node root);
55 [RaisesException] boolean hasShadowInsertionPoint(Node root); 56 [RaisesException] boolean hasShadowInsertionPoint(Node root);
56 [RaisesException] boolean hasContentElement(Node root); 57 [RaisesException] boolean hasContentElement(Node root);
57 [RaisesException] unsigned long countElementShadow(Node Root); 58 [RaisesException] unsigned long countElementShadow(Node Root);
58 [RaisesException] DOMString shadowPseudoId(Element element); 59 [RaisesException] DOMString shadowPseudoId(Element element);
59 [RaisesException] void setShadowPseudoId(Element element, DOMString id); 60 [RaisesException] void setShadowPseudoId(Element element, DOMString id);
60 [RaisesException] boolean isValidContentSelect(Element contentElement); 61 [RaisesException] boolean isValidContentSelect(Element contentElement);
61 [RaisesException] Node treeScopeRootNode(Node node); 62 [RaisesException] Node treeScopeRootNode(Node node);
62 [RaisesException] Node parentTreeScope(Node node); 63 [RaisesException] Node parentTreeScope(Node node);
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 [ImplementedInPrivateScript] short getIntegerFromDocument(Document document) ; 296 [ImplementedInPrivateScript] short getIntegerFromDocument(Document document) ;
296 [ImplementedInPrivateScript] Node createElement(Document document); 297 [ImplementedInPrivateScript] Node createElement(Document document);
297 [ImplementedInPrivateScript] void appendChild(Node node1, Node node2); 298 [ImplementedInPrivateScript] void appendChild(Node node1, Node node2);
298 [ImplementedInPrivateScript] Node firstChild(Node node); 299 [ImplementedInPrivateScript] Node firstChild(Node node);
299 [ImplementedInPrivateScript] Node nextSibling(Node node); 300 [ImplementedInPrivateScript] Node nextSibling(Node node);
300 [ImplementedInPrivateScript] DOMString innerHTML(Node node); 301 [ImplementedInPrivateScript] DOMString innerHTML(Node node);
301 [ImplementedInPrivateScript] void setInnerHTML(Node node, DOMString string); 302 [ImplementedInPrivateScript] void setInnerHTML(Node node, DOMString string);
302 [ImplementedInPrivateScript] void addClickListener(Node node); 303 [ImplementedInPrivateScript] void addClickListener(Node node);
303 [ImplementedInPrivateScript] void clickNode(Document document, Node node); 304 [ImplementedInPrivateScript] void clickNode(Document document, Node node);
304 }; 305 };
OLDNEW
« Source/core/page/EventHandler.cpp ('K') | « Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698