diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/geometry/DOMPoint-001.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/geometry/DOMPoint-001.html')
-rw-r--r-- | testing/web-platform/tests/css/geometry/DOMPoint-001.html | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/geometry/DOMPoint-001.html b/testing/web-platform/tests/css/geometry/DOMPoint-001.html new file mode 100644 index 0000000000..945f4674de --- /dev/null +++ b/testing/web-platform/tests/css/geometry/DOMPoint-001.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<html> +<head> + <title>Geometry Interfaces: DOMPoint and DOMPointReadOnly interface tests</title> + <link rel="author" title="Dirk Schulze" href="mailto:dschulze@adobe.com" /> + <link rel="help" href="https://www.w3.org/TR/geometry-1/#dictdef-dompointinit"> + <link rel="help" href="https://www.w3.org/TR/geometry-1/#dom-dompoint-dompoint"> + <link rel="help" href="https://www.w3.org/TR/geometry-1/#DOMPoint"> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> +</head> +<body> + <p>Test DOMPoint and DOMPointReadOnly interfaces</p> + <div id="log"></div> + <script> + test(function() { + checkDOMPoint(new DOMPoint(), {x:0, y:0, z:0, w:1}); + },'testConstructor0'); + test(function() { + checkDOMPoint(new DOMPoint(1), {x:1, y:0, z:0, w:1}); + },'testConstructor1'); + test(function() { + checkDOMPoint(new DOMPoint(1, 2), {x:1, y:2, z:0, w:1}); + },'testConstructor2'); + test(function() { + checkDOMPoint(new DOMPoint(1, 2, 3), {x:1, y:2, z:3, w:1}); + },'testConstructor3'); + test(function() { + checkDOMPoint(new DOMPoint(1, 2, 3, 4), {x:1, y:2, z:3, w:4}); + },'testConstructor4'); + test(function() { + checkDOMPoint(new DOMPoint(1, 2, 3, 4, 5), {x:1, y:2, z:3, w:4}); + },'testConstructor5'); + test(function() { + checkDOMPoint(new DOMPoint({}), {x:NaN, y:0, z:0, w:1}); + },'testConstructorDictionary0'); + test(function() { + checkDOMPoint(new DOMPoint({x:1}), {x:NaN, y:0, z:0, w:1}); + },'testConstructorDictionary1'); + test(function() { + checkDOMPoint(new DOMPoint({x:1, y:2}), {x:NaN, y:0, z:0, w:1}); + },'testConstructorDictionary2'); + test(function() { + checkDOMPoint(new DOMPoint(1, undefined), {x:1, y:0, z:0, w:1}); + },'testConstructor2undefined'); + test(function() { + checkDOMPoint(new DOMPoint("a", "b"), {x:NaN, y:NaN, z:0, w:1}); + },'testConstructorUndefined1'); + test(function() { + checkDOMPoint(new DOMPoint({x:"a", y:"b"}), {x:NaN, y:0, z:0, w:1}); + },'testConstructorUndefined2'); + test(function() { + checkDOMPoint(new DOMPointReadOnly(), {x:0, y:0, z:0, w:1}); + },'DOMPointReadOnly constructor with no values'); + test(function() { + checkDOMPoint(new DOMPointReadOnly(1, 2, 3, 4), {x:1, y:2, z:3, w:4}); + },'DOMPointReadOnly constructor with 4 values'); + test(function() { + var p = new DOMPoint(0, 0, 0, 1); + p.x = undefined; + p.y = undefined; + p.z = undefined; + p.w = undefined; + checkDOMPoint(p, {x:NaN, y:NaN, z:NaN, w:NaN}); + },'testAttributesUndefined'); + test(function() { + var p = new DOMPoint(0, 0, 0, 1); + p.x = NaN; + p.y = Number.POSITIVE_INFINITY; + p.z = Number.NEGATIVE_INFINITY; + p.w = Infinity; + checkDOMPoint(p, {x:NaN, y:Infinity, z:-Infinity, w:Infinity}); + },'testAttributesNaNInfinity'); + + function checkDOMPoint(p, exp) { + assert_equals(p.x, exp.x, "Expected value for x is " + exp.x); + assert_equals(p.y, exp.y, "Expected value for y is " + exp.y); + assert_equals(p.z, exp.z, "Expected value for z is " + exp.z); + assert_equals(p.w, exp.w, "Expected value for w is " + exp.w); + } + </script> +</body> +</html> |