diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/cssom-view/cssom-getClientRects.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/cssom-view/cssom-getClientRects.html')
-rw-r--r-- | testing/web-platform/tests/css/cssom-view/cssom-getClientRects.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/cssom-view/cssom-getClientRects.html b/testing/web-platform/tests/css/cssom-view/cssom-getClientRects.html new file mode 100644 index 0000000000..36559eb116 --- /dev/null +++ b/testing/web-platform/tests/css/cssom-view/cssom-getClientRects.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <title>CSS Test (CSSOM View): getClientRects of element outside DOM</title> + <link rel="author" title="Chris Rebert" href="http://chrisrebert.com"> + <link rel="help" href="http://www.w3.org/TR/cssom-view/#dom-element-getclientrects"> + <meta name="flags" content="dom"> + <meta name="assert" content="Calling getClientRects on an element that is outside of the DOM (and therefore does not have an associated layout box) should result in an empty DOMRectList and should definitely not throw an error."> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <script> + test( + function () { + var rectList = document.createElement('div').getClientRects(); + assert_equals(rectList.length, 0, "DOMRectList should be empty"); + }, + "getClientRects on a newly-created Element not yet inserted into the DOM should return an empty DOMRectList" + ); + </script> +</head> +<body></body> +</html> |