function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rameshvar DayalRameshvar Dayal 

ResizeObserver loop limit exceeded

HI,

I am using HTML video player to play videos inside the lightning component and while I am expanding and collapsing the video then getting an error This page has an error. You might just need to refresh it. [NoErrorObjectAvailable] ResizeObserver loop limit exceeded.

I also tried to play the video inside the lightning web component but still getting the same issue.

Using Below code to play video.

<div class="edg-card-panel">
            <div class="edg-card-body">
                <video width="320" height="240" controls>
                        <source src={videoURL} type="video/mp4">
                    Your browser does not support the video tag.
                </video>
            </div>
</div>

Thanks in advance.