mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
d4d2946639
(Note: this also depends on the change to nsStyleAnimation.cpp's StyleCoordToValue in bug 520234 and on other changes in that bug.)
18 lines
344 B
HTML
18 lines
344 B
HTML
<!DOCTYPE HTML>
|
|
<title>Test for calc() on background-size</title>
|
|
<style>
|
|
|
|
p {
|
|
height: 50px; width: 200px;
|
|
border: thin solid;
|
|
background-image: url(../backgrounds/blue-32x32.png);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
#one { background-size: 150px 20px; }
|
|
#two { background-image: none }
|
|
|
|
</style>
|
|
<p id="one"></p>
|
|
<p id="two"></p>
|