mirror of
https://github.com/servo/servo
synced 2026-05-02 04:17:38 +02:00
Update CSS tests to revision 0698c2aa9ead844b6d7d10eafb096cb1118e13ef
This commit is contained in:
@@ -16,115 +16,115 @@
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"auto", "background-size initial value");
|
||||
}, "background-size_initial");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "auto";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"auto", "background-size supporting value");
|
||||
}, "background-size_auto");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "cover";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"cover", "background-size supporting value");
|
||||
}, "background-size_cover");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "contain";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"contain", "background-size supporting value");
|
||||
}, "background-size_contain");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "0px";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"0px", "background-size supporting value");
|
||||
}, "background-size_length_zero");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "-0px";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"0px", "background-size supporting value");
|
||||
}, "background-size_length_negative_zero");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "+0px";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"0px", "background-size supporting value");
|
||||
}, "background-size_length_positive_zero");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "15px";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"15px", "background-size supporting value");
|
||||
}, "background-size_length_normal");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "0%";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"0%", "background-size supporting value");
|
||||
}, "background-size_percentage_min");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "50%";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"50%", "background-size supporting value");
|
||||
}, "background-size_percentage_normal");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "100%";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"100%", "background-size supporting value");
|
||||
}, "background-size_percentage_max");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "auto auto";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"auto auto", "background-size supporting value");
|
||||
}, "background-size_auto_auto");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "auto 15px";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"auto 15px", "background-size supporting value");
|
||||
}, "background-size_auto_length");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "auto 50%";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"auto 50%", "background-size supporting value");
|
||||
}, "background-size_auto_percentage");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "15px auto";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"15px auto", "background-size supporting value");
|
||||
}, "background-size_length_auto");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "15px 15px";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"15px 15px", "background-size supporting value");
|
||||
}, "background-size_length_length");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "15px 50%";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"15px 50%", "background-size supporting value");
|
||||
}, "background-size_length_percentage");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "50% auto";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"50% auto", "background-size supporting value");
|
||||
}, "background-size_percentage_auto");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "50% 15px";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
"50% 15px", "background-size supporting value");
|
||||
}, "background-size_percentage_length");
|
||||
|
||||
|
||||
document.getElementById("test").style.backgroundSize = "50% 50%";
|
||||
test(function() {
|
||||
assert_equals(getComputedStyle(document.getElementById("test"), null).getPropertyValue("background-size"),
|
||||
|
||||
Reference in New Issue
Block a user