1
0
Fork 0
firefox/testing/web-platform/tests/css/geometry/WebKitCSSMatrix.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
1 KiB
HTML

<!DOCTYPE html>
<title>Geometry Interfaces: WebKitCSSMatrix</title>
<link rel="help" href="https://drafts.fxtf.org/geometry/#DOMMatrix">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
assert_true('WebKitCSSMatrix' in self, 'WebKitCSSMatrix should exist');
assert_true('DOMMatrix' in self, 'DOMMatrix should exist');
assert_equals(WebKitCSSMatrix, DOMMatrix, 'interface object');
assert_equals(WebKitCSSMatrix.prototype, DOMMatrix.prototype, 'prototype');
}, 'Equivalence test');
['WebKitCSSMatrix', 'DOMMatrix'].forEach(interf => {
test(() => {
const desc = Object.getOwnPropertyDescriptor(self, interf);
assert_equals(desc.value, self[interf], 'value');
assert_true(desc.writable, 'writable');
assert_true(desc.configurable, 'configurable');
assert_false(desc.enumerable, 'enumerable');
assert_equals(desc.get, undefined, 'get');
assert_equals(desc.set, undefined, 'set');
}, `Property descriptor for ${interf}`);
});
</script>