diff --git a/src/plugins/htmlVideoPlayer/style.css b/src/plugins/htmlVideoPlayer/style.css
index 880ea86743..7d984b69aa 100644
--- a/src/plugins/htmlVideoPlayer/style.css
+++ b/src/plugins/htmlVideoPlayer/style.css
@@ -17,7 +17,11 @@
order: -1;
}
-video::-webkit-media-controls {
+/* Controls are enabled for devices that don't support autoplay. They will be hidden when playback starts.
+ In Tizen 2.3 (and probably other old web engines), subtitles are located under '-webkit-media-controls' tree.
+ Therefore, we hide controls only if they are enabled.
+ */
+video[controls]::-webkit-media-controls {
display: none !important;
}