mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +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
|
@ -303223,6 +303223,12 @@
|
|||
{}
|
||||
]
|
||||
],
|
||||
"css/css-values/calc-serialization.html": [
|
||||
[
|
||||
"/css/css-values/calc-serialization.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-values/calc-unit-analysis.html": [
|
||||
[
|
||||
"/css/css-values/calc-unit-analysis.html",
|
||||
|
@ -503730,6 +503736,10 @@
|
|||
"080551c1bee3d7bf54dda2c3d5b7e5a9fbd8aed6",
|
||||
"reftest"
|
||||
],
|
||||
"css/css-values/calc-serialization.html": [
|
||||
"d0bcbd402cb78e704dabc7f1665d40ba163e30eb",
|
||||
"testharness"
|
||||
],
|
||||
"css/css-values/calc-unit-analysis.html": [
|
||||
"995e7d094cb02f142d28ff0ca7de9d98f9a298e3",
|
||||
"testharness"
|
||||
|
|
|
@ -32567,12 +32567,6 @@
|
|||
{}
|
||||
]
|
||||
],
|
||||
"css/calc-serialization.html": [
|
||||
[
|
||||
"/_mozilla/css/calc-serialization.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-position-3/position-sticky-get-bounding-client-rect.html": [
|
||||
[
|
||||
"/_mozilla/css/css-position-3/position-sticky-get-bounding-client-rect.html",
|
||||
|
@ -61696,10 +61690,6 @@
|
|||
"b9e77c824d0c96e51d51fb8f1e923d3ab67be027",
|
||||
"testharness"
|
||||
],
|
||||
"css/calc-serialization.html": [
|
||||
"628597eb36bf21a1ec982c7f6935ee7949c62044",
|
||||
"testharness"
|
||||
],
|
||||
"css/canvas_as_block_element_a.html": [
|
||||
"668d93da2dab9722998cc7c5785c20e2ab9a1ced",
|
||||
"reftest"
|
||||
|
|
|
@ -3,20 +3,15 @@
|
|||
<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>
|
||||
<!-- FIXME(emilio): Upstream when spec stops being under discussion -->
|
||||
<div id="content"></div>
|
||||
<script>
|
||||
|
||||
// NOTE(emilio): This intentionally doesn't test for order of percentages
|
||||
// because of:
|
||||
//
|
||||
// https://github.com/w3c/csswg-drafts/issues/1731
|
||||
|
||||
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)",
|
Loading…
Add table
Add a link
Reference in a new issue