mirror of
https://github.com/servo/servo
synced 2026-05-14 10:56:44 +02:00
41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Backgrounds and Borders Test: background-size - inherit keyword value</title>
|
|
<link rel="author" title="Intel" href="http://www.intel.com">
|
|
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-11-17 -->
|
|
<link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-size" title="3.9. Sizing Images: the 'background-size' property">
|
|
<link rel="help" href="http://www.w3.org/TR/css3-background/#values">
|
|
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
|
|
<meta name="flags" content="image">
|
|
<meta name="assert" content="Check if background-size supports inherit keyword as its property value.">
|
|
<style>
|
|
#container {
|
|
background-size: 25% 50%;
|
|
}
|
|
#ref-overlapped-red {
|
|
background-color: red;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
#test-overlapping-green {
|
|
background-image: url(support/50x50-green.png);
|
|
background-repeat: no-repeat;
|
|
background-size: inherit;
|
|
bottom: 100px;
|
|
height: 200px;
|
|
position: relative;
|
|
width: 400px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
|
<div id="container">
|
|
<div id="ref-overlapped-red"></div>
|
|
<div id="test-overlapping-green"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|