Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/overflow-img-scroll-non-replaced.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>Verifies overflow allows scrolling when rendering alt test for img elements</title>
<link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
<link rel="match" href="overflow-img-scroll-non-replaced-ref.html">
<style>
img {
border: solid;
display: block;
width: 150px;
padding: 10px;
overflow: scroll;
}
</style>
<body>
<img src="about:invalid" alt="I have scrollbar ................................................................"></img>
</body>