Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE html>
<title>WebKitMaxBoxImage on CSSStyleDeclaration</title>
<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>