argus-eyes
Version:
A lightweight commandline tool for visual regression testing of UI components.
33 lines (32 loc) • 641 B
HTML
<html>
<head>
<style>
.header, .footer {
display: block;
margin: 25px;
}
.header {
width: 250px;
height: 100px;
background: crimson;
}
.footer {
width: 100px;
height: 250px;
background: royalblue;
}
.remove-me {
color: white;
font-size: 22px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="header"></div>
<div class="footer">
<span class="remove-me">TEXT SHOULD NOT BE VISIBLE</span>
</div>
</body>
</html>