diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/css/css-values/hypot-pow-sqrt-computed.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-values/hypot-pow-sqrt-computed.html')
-rw-r--r-- | testing/web-platform/tests/css/css-values/hypot-pow-sqrt-computed.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-values/hypot-pow-sqrt-computed.html b/testing/web-platform/tests/css/css-values/hypot-pow-sqrt-computed.html new file mode 100644 index 0000000000..a7d7dae72a --- /dev/null +++ b/testing/web-platform/tests/css/css-values/hypot-pow-sqrt-computed.html @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<link rel="help" href="https://drafts.csswg.org/css-values-4/#comp-func"> +<link rel="help" href="https://drafts.csswg.org/css-values-4/#numbers"> +<link rel="help" href="https://drafts.csswg.org/css-values-4/#calc-type-checking"> +<link rel="author" title="Apple Inc"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="../support/numeric-testcommon.js"></script> +<div id="target"></div> +<script> + +// Identity tests +test_math_used('pow(1,1)', '1', {type:'number'}); +test_math_used('sqrt(1)', '1', {type:'number'}); +test_math_used('hypot(1)', '1', {type:'number'}); + +// Nestings +test_math_used('sqrt(pow(1,1))', '1'); +test_math_used('hypot(pow(1, sqrt(1)))', '1'); +test_math_used('calc(hypot(pow((1 + sqrt(1)) / 2, sqrt(1))))', '1'); + +// General calculations +test_math_used('calc(100px * pow(2, pow(2, 2)))','1600px'); +test_math_used('calc(1px * pow(2, 3))', '8px') +test_math_used('calc(100px * sqrt(100))', '1000px'); +test_math_used('calc(1px * pow(2, sqrt(100))', '1024px'); +test_math_used('hypot(3px, 4px)', '5px'); +test_math_used('calc(100px * hypot(3, 4))', '500px'); +test_math_used('hypot(-5px)', '5px'); +test_math_used('calc(1px * hypot(-5))', '5px'); +test_math_used('calc(1px * hypot(10000))','10000px'); +test_math_used('calc(2px * sqrt(100000000))','20000px'); +test_math_used('calc(3px * pow(200, 4))', '33554428px'); + +//Type checking hypot +test_math_used('hypot(1px)', '1px'); +test_math_used('hypot(1cm)', '1cm'); +test_math_used('hypot(1mm)', '1mm'); +test_math_used('hypot(1Q)', '1Q'); +test_math_used('hypot(1in)', '1in'); +test_math_used('hypot(1pc)', '1pc'); +test_math_used('hypot(1pt)', '1pt'); +test_math_used('hypot(1em)', '1em'); +test_math_used('hypot(1ex)', '1ex'); +test_math_used('hypot(1ch)', '1ch'); +test_math_used('hypot(1rem)', '1rem'); +test_math_used('hypot(1vh)', '1vh'); +test_math_used('hypot(1vw)', '1vw'); +test_math_used('hypot(1vmin)', '1vmin'); +test_math_used('hypot(1vmax)', '1vmax'); +test_math_used('hypot(1s)', '1s', {type:'time'}); +test_math_used('hypot(1ms)', '1ms', {type:'time'}); +test_math_used('hypot(1deg)', '1deg', {type:'angle', approx:0.001}); +test_math_used('hypot(1grad)', '1grad', {type:'angle', approx:0.001}); +test_math_used('hypot(1rad)', '1rad', {type:'angle', approx:0.001}); +test_math_used('hypot(1turn)', '1turn', {type:'angle', approx:0.001}); +</script>
\ No newline at end of file |