Skip to content

Commit

Permalink
Issue web-platform-tests#34493 - Adds webkitMaskBox* to a unique test
Browse files Browse the repository at this point in the history
As shown in whatwg/compat#202
there is currently no browsers implementing the mask-border-*,
which should be the equivalent.

They stand on their own and probably for now deserves a test
by themselves.
  • Loading branch information
karlcow committed Jun 23, 2022
1 parent 25993c3 commit 1900ae0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions webkit-mask-box-enumeration.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<title>WebKitMaxBoxImage on CSSStyleDeclaration</title>
<link rel="help" href="https://compat.spec.whatwg.org/#css-simple-aliases">
<meta name="assert" content="This test verifies that these WebKit properties are enumerated on CSSStyleDeclaration" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
</body>
<script>
const PREFIXED_PROPS = [
'webkitMaskBoxImage',
'webkitMaskBoxImageOutset',
'webkitMaskBoxImageRepeat',
'webkitMaskBoxImageSlice',
'webkitMaskBoxImageSource',
'webkitMaskBoxImageWidth',
];

const docBodyStyle = document.body.style;
for (let prop of PREFIXED_PROPS) {
test(() => {
assert_true(prop in docBodyStyle);
}, `${prop} found on CSSStyleDeclaration`);
}
</script>

0 comments on commit 1900ae0

Please sign in to comment.