mirror of
https://github.com/servo/servo.git
synced 2025-08-11 16:35:33 +01:00
Auto merge of #19449 - emilio:calc-serialization-test, r=jdm
style: Upstream calc serialization test. And test https://github.com/w3c/csswg-drafts/issues/1731 too, since it was fixed. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19449) <!-- Reviewable:end -->
This commit is contained in:
commit
75f348ecc4
3 changed files with 12 additions and 17 deletions
|
@ -0,0 +1,29 @@
|
|||
<!doctype html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Values and Units: calc() serialization.</title>
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-values/#calc-serialize">
|
||||
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/1731">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<div id="content"></div>
|
||||
<script>
|
||||
test(function() {
|
||||
// specified -> expected
|
||||
var values = {
|
||||
"calc(10px + 1vmin + 10%)": "calc(10% + 10px + 1vmin)",
|
||||
"calc(10px + 1vmin)": "calc(10px + 1vmin)",
|
||||
"calc(10px + 1em)": "calc(1em + 10px)",
|
||||
"calc(1vmin - 10px)": "calc(-10px + 1vmin)",
|
||||
"calc(-10px + 1em)": "calc(1em - 10px)",
|
||||
"calc(-10px)": "calc(-10px)",
|
||||
};
|
||||
|
||||
var content = document.getElementById("content");
|
||||
|
||||
for (var prop in values) {
|
||||
content.style.width = prop;
|
||||
assert_equals(content.style.width, values[prop], "Serialization of " + prop);
|
||||
}
|
||||
}, "calc() serialization")
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue