Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
    • /html/rendering/replaced-elements/attributes-for-embedded-content-and-images/video-inline-size-containment-no-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<link author="Sammy Gill" href="mailto:sammy.gill@apple.com">
<meta name="assert" content="Applying inline-size containment to the video should not result in a debug assert being triggered">
<style>
video {
aspect-ratio: 1;
container-type: inline-size;
inset: 0 auto;
min-width: min-content;
position: fixed;
}
</style>
</head>
<body>
<video></video>
</body>
</html>