Files
tubestation/servo/tests/html/test_overflow_hidden.html
Jack Moffitt 132ee35633 servo: Merge #3230 - Cargoify servo (from servo:cargoify)
Source-Repo: https://github.com/servo/servo
Source-Revision: b1305bb7d051f83850c51bb0da0ccc86a5e07922
2014-09-09 08:18:18 -06:00

36 lines
878 B
HTML

<!DOCTYPE html>
<!-- http://www.w3.org/TR/CSS21/visufx.html -->
<html>
<head>
<style>
div {
overflow: hidden;
width : 100px; height: 100px;
border: thin solid red;
}
blockquote {
width : 125px; height : 100px;
margin-top: 50px; margin-left: 50px;
border: thin dashed black
}
cite {
display: block;
text-align : right;
border: none
}
</style>
</head>
<body>
<div>
<blockquote>
<p>I didn't like the play, but then I saw
it under adverse conditions - the curtain was up.</p>
<cite>- Groucho Marx</cite>
</blockquote>
</div>
</body>
</html>