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-default-object-width-constrained-by-max-height.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta name="assert" content="Video that has no intrinsic size should have width constrained by max-height">
<link author="Sammy Gill" href="mailto:sammy.gill@apple.com">
<link rel="match" href="/css/reference/ref-filled-green-100px-square.xht">
<style>
video {
background-color: green;
width: auto;
height: auto;
max-height: 100px;
}
</style>
</head>
<!-- aspect-ratio should be set to: auto 100 / 100-->
<body>
<p>Test passes if there is a filled green square.</p>
<video width="100" height="100" src="/css/support/60x60-green.png">
</body>
</html>