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

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

Issue 1489433002: Support the essential part of Shadow DOM v1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use the 3-line header Created 5 years 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
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // Advances an animated image. For BitmapImage (e.g., animated gifs) this 80 // Advances an animated image. For BitmapImage (e.g., animated gifs) this
81 // will advance to the next frame. For SVGImage, this will trigger an 81 // will advance to the next frame. For SVGImage, this will trigger an
82 // animation update for CSS and advance the SMIL timeline by one frame. 82 // animation update for CSS and advance the SMIL timeline by one frame.
83 [RaisesException] void advanceImageAnimation(Element image); 83 [RaisesException] void advanceImageAnimation(Element image);
84 84
85 [RaisesException] Node nextSiblingInComposedTree(Node node); 85 [RaisesException] Node nextSiblingInComposedTree(Node node);
86 [RaisesException] Node firstChildInComposedTree(Node node); 86 [RaisesException] Node firstChildInComposedTree(Node node);
87 [RaisesException] Node lastChildInComposedTree(Node node); 87 [RaisesException] Node lastChildInComposedTree(Node node);
88 [RaisesException] Node nextInComposedTree(Node node); 88 [RaisesException] Node nextInComposedTree(Node node);
89 [RaisesException] Node previousInComposedTree(Node node); 89 [RaisesException] Node previousInComposedTree(Node node);
90 [RaisesException] Node parentInComposedTree(Node node);
tkent 2015/12/11 04:49:37 Is this used now?
hayato 2015/12/11 04:51:08 Good point. Let me remove this before landing this
90 91
91 DOMString visiblePlaceholder(Element element); 92 DOMString visiblePlaceholder(Element element);
92 93
93 void selectColorInColorChooser(Element element, DOMString colorValue); 94 void selectColorInColorChooser(Element element, DOMString colorValue);
94 void endColorChooser(Element element); 95 void endColorChooser(Element element);
95 96
96 // If the argument is omitted, the top-level document is used. 97 // If the argument is omitted, the top-level document is used.
97 boolean hasAutofocusRequest(optional Document document); 98 boolean hasAutofocusRequest(optional Document document);
98 [RaisesException] DOMString[] formControlStateOfHistoryItem(); 99 [RaisesException] DOMString[] formControlStateOfHistoryItem();
99 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString> values); 100 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString> values);
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); 353 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible);
353 354
354 void forceRestrictIFramePermissions(); 355 void forceRestrictIFramePermissions();
355 [RaisesException] double monotonicTimeToZeroBasedDocumentTime(double platfor mTime); 356 [RaisesException] double monotonicTimeToZeroBasedDocumentTime(double platfor mTime);
356 357
357 void setMediaElementNetworkState(HTMLMediaElement element, long state); 358 void setMediaElementNetworkState(HTMLMediaElement element, long state);
358 359
359 // TODO(liberato): remove once autoplay gesture override experiment conclude s. 360 // TODO(liberato): remove once autoplay gesture override experiment conclude s.
360 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); 361 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement);
361 }; 362 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698