summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/compat/webkit-mask-box-enumeration.html
blob: 048170262a23b6929993518fca7a5a56d23614e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>