html2canvas/tests/reftests/text/child-textnodes.html
2017-08-09 00:52:56 +08:00

26 lines
644 B
HTML

<!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;
}
body {
font-family: Arial;
}
</style>
</head>
<body>
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.
</body>
</html>