4 <title>Many properties do not support quirky-length</title>
5 <link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
6 <link rel="help" href="https://quirks.spec.whatwg.org/#the-unitless-length-quirk">
7 <meta name="assert" content="quirky-length is not supported by properties not listed.">
8 <script src="/resources/testharness.js"></script>
9 <script src="/resources/testharnessreport.js"></script>
12 <div id="target"></div>
17 'background-blend-mode',
30 for (let property of properties) {
32 if (!getComputedStyle(target)[property]) {
33 assert_unreached('Property ' + property + ' not supported');
35 target.style[property] = '1234';
36 assert_not_equals(target.style[property], '1234');
37 assert_not_equals(target.style[property], '1234px');
38 }, 'Property ' + property + ' does not support quirky length');