Index: third_party/WebKit/Source/core/html/MediaDocument.cpp |
diff --git a/third_party/WebKit/Source/core/html/MediaDocument.cpp b/third_party/WebKit/Source/core/html/MediaDocument.cpp |
index abbf4ea23ce25b572c8967a61288f9a08d16a07d..77168368e317ccf11023404feadc97fe7a31d9de 100644 |
--- a/third_party/WebKit/Source/core/html/MediaDocument.cpp |
+++ b/third_party/WebKit/Source/core/html/MediaDocument.cpp |
@@ -136,7 +136,8 @@ class MediaLoadedEventListener final : public EventListener { |
static_cast<HTMLVideoElement*>(event->target()->toNode()); |
UserGestureIndicator gesture( |
DocumentUserGestureToken::create(&media->document())); |
- media->webkitEnterFullscreen(); |
+ // TODO(shaktisahu): Enable fullscreen after crbug/698353 is fixed. |
+ // media->webkitEnterFullscreen(); |
mlamouri (slow - plz ping)
2017/03/10 15:46:51
No need to leave the code commented, the TODO shou
|
media->play(); |
} |
}; |