html2canvas/tests/reftests/clip.html

47 lines
1.7 KiB
HTML
Raw Normal View History

2014-10-07 21:11:46 +04:00
<!DOCTYPE html>
<html>
<head>
<title>Inline text in the top element</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../test.js"></script>
<style>
span {
color:blue;
}
p {
background-color: green;
}
div {
background: red;
2014-10-12 21:32:00 +04:00
border: 5px solid blue;
2014-10-07 21:11:46 +04:00
}
2017-08-08 19:50:31 +03:00
body {
font-family: Arial;
}
2014-10-07 21:11:46 +04:00
</style>
</head>
<body>
2014-10-12 21:32:00 +04:00
<div style="clip: rect(0px, 400px, 50px, 200px); ">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
<div style="clip: rect(0px, 400px, 50px, 200px); position: relative; ">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
<div style="clip: rect(0px, 400px, 50px, 200px); position: fixed; ">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
<div style="clip: rect(0px, 400px, 50px, 200px); position: absolute; top: 250px; left: 500px;">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
</body>
<div style="clip: rect(0px, 400px, 50px, 200px); position: absolute; top: 500px;">Some inline text <span> followed by text in span </span> followed by more inline text.
2014-10-07 21:11:46 +04:00
<p>Then a block level element.</p>
Then more inline text.</div>
</body>
</html>