Update web-platform-tests to revision ef44bff0adaa07f2e420a0cbc1bc493cd5786656

This commit is contained in:
WPT Sync Bot 2019-06-27 10:26:43 +00:00
parent 61cadfa9a6
commit 67592a2228
61 changed files with 981 additions and 481 deletions

View file

@ -4,12 +4,18 @@
<meta charset="utf-8">
<title>
CSS Values and Units Test:
Calc() inside calc()
32 nested pairs of parentheses inside calc()
</title>
<meta name="assert" content="
The calc() function notation is allowed inside a calc() notation.
This test checks the support for the minimum required number of 32 nested pairs of parentheses inside a calc() function.
" />
<!--
More info:
[css-values] Limit nested pairs of parentheses in calc to 32
https://github.com/w3c/csswg-drafts/issues/3462
-->
<link
rel="author"
title="François REMY"
@ -29,7 +35,7 @@
html { background: red; overflow: hidden; }
#outer { position: absolute; top: 0px; left: 0px; background: green; width: 100%; }
#outer { height: calc((((((((((((((((((((((((100%)))))))))))))))))))))))); }
#outer { height: calc((((((((((((((((((((((((((((((((100%)))))))))))))))))))))))))))))))); }
</style>