1
0
Fork 0
firefox/testing/web-platform/tests/css/css-overflow/overflow-img-scroll-non-replaced-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
569 B
HTML

<!doctype html>
<meta charset="utf-8">
<title>Verifies overflow allows scrolling when rendering alt test for img elements</title>
<link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-overflow">
<link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
<style>
div {
border: solid;
display: block;
width: 150px;
padding: 10px;
overflow: scroll;
}
</style>
<body>
<div>
<img src="about:invalid" alt="I have "></img>
scrollbar ................................................................
</div>
</body>