mirror of
https://github.com/servo/servo.git
synced 2025-06-27 10:33:39 +01:00
26 lines
854 B
HTML
26 lines
854 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link rel="author" title="Ethan Malasky" href="mailto:emalasky@adobe.com">
|
|
<meta name="flags" content="ahem image">
|
|
<script src="/common/reftest-wait.js"></script>
|
|
<link rel="preload" as="image" href="../support/cat.png" onload="takeScreenshot()" />
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<style type="text/css">
|
|
#content {
|
|
color: transparent;
|
|
font: 100px Ahem;
|
|
}
|
|
#content > #foo {
|
|
background-image: url("../support/cat.png"); /* 98 w. by 99px h. */
|
|
background-repeat: no-repeat;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if cat image is visible.</p>
|
|
<div id="content"><span id="foo">X</span>
|
|
</div>
|
|
</body>
|
|
</html>
|