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

Unified Diff: Source/core/html/HTMLVideoElement.idl

Issue 456323002: [WIP] Re-implement MediaControls in Blink-in-JS (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/html/HTMLVideoElement.idl
diff --git a/Source/core/html/HTMLVideoElement.idl b/Source/core/html/HTMLVideoElement.idl
index 04f6d1bcb955134a617b0eb256cf126138225410..38504af25df74c71f8b8c177577125f0043c3dff 100644
--- a/Source/core/html/HTMLVideoElement.idl
+++ b/Source/core/html/HTMLVideoElement.idl
@@ -26,10 +26,13 @@
[
RuntimeEnabled=Media
] interface HTMLVideoElement : HTMLMediaElement {
+ //[ImplementedInPrivateScript, Reflect] attribute unsigned long width;
+ //[ImplementedInPrivateScript, Reflect] attribute unsigned long height;
[Reflect] attribute unsigned long width;
[Reflect] attribute unsigned long height;
readonly attribute unsigned long videoWidth;
readonly attribute unsigned long videoHeight;
+ //[ImplementedInPrivateScript, Reflect, URL] attribute DOMString poster;
[Reflect, URL] attribute DOMString poster;
[RuntimeEnabled=PrefixedVideoFullscreen, DeprecateAs=PrefixedVideoSupportsFullscreen] readonly attribute boolean webkitSupportsFullscreen;

Powered by Google App Engine
This is Rietveld 408576698