mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
402beefae6
--HG-- rename : layout/reftests/backgrounds/background-size-each-box.html => layout/reftests/backgrounds/background-size-clone.html rename : layout/reftests/backgrounds/background-size-cover-each-box.html => layout/reftests/backgrounds/background-size-cover-clone.html rename : layout/reftests/backgrounds/background-size-cover-continuous.html => layout/reftests/backgrounds/background-size-cover-slice.html rename : layout/reftests/backgrounds/background-size-continuous.html => layout/reftests/backgrounds/background-size-slice.html
37 lines
617 B
HTML
37 lines
617 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>box-decoration-break: slice</title>
|
|
<style type="text/css">
|
|
@font-face
|
|
{
|
|
font-family: Ahem;
|
|
src: url(../fonts/Ahem.ttf);
|
|
}
|
|
|
|
#outer
|
|
{
|
|
border: 1px solid black;
|
|
width: 10em;
|
|
}
|
|
#ahem-lines
|
|
{
|
|
font-family: Ahem;
|
|
font-size: 32px;
|
|
white-space: pre;
|
|
background-image: url(blue-8x20-green-8x20.png);
|
|
background-repeat: no-repeat;
|
|
box-decoration-break: slice;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="outer">
|
|
<span id="ahem-lines"> <!-- EOL -->
|
|
<!-- mix it up for slice --><!-- EOL -->
|
|
<!-- EOL -->
|
|
<!-- EOL -->
|
|
</span></div>
|
|
</body>
|
|
</html>
|